Convert Unix Timestamp to HST (Hawaii Standard Time)
Hawaii does not observe daylight saving. Always UTC-10.
Right now in HST
2026-04-27 12:13:47 HST
Current UTC offset: -10:00 · UTC equivalent: 2026-04-27 22:13:47 UTC
Sample Conversions
| Unix Timestamp | Note | HST Time |
|---|---|---|
| 1706745600 | Sample timestamp | 2024-01-31 14:00:00 HST |
| 1577836800 | New Year 2020 | 2019-12-31 14:00:00 HST |
| 1704067200 | New Year 2024 | 2023-12-31 14:00:00 HST |
How to Convert in Code
Python
from datetime import datetime
from zoneinfo import ZoneInfo
dt = datetime.fromtimestamp(1706745600, ZoneInfo('Pacific/Honolulu'))
print(dt)
JavaScript (with Intl)
new Date(1706745600 * 1000).toLocaleString('en-US', {
timeZone: 'Pacific/Honolulu'
})
PHP
$dt = new DateTime('@1706745600');
$dt->setTimezone(new DateTimeZone('Pacific/Honolulu'));
echo $dt->format('Y-m-d H:i:s T');
No Daylight Saving
This zone does not observe daylight saving - the offset shown above is constant year-round. That makes it slightly easier to reason about than zones that shift, but you should still store timestamps as Unix epoch.