Convert Unix Timestamp to PST (Pacific Standard Time)
PST is UTC-8 (winter). In summer the zone observes PDT (Pacific Daylight Time, UTC-7). Used by California, Oregon, Washington.
Right now in PST
2026-04-27 15:13:47 PDT
Current UTC offset: -07:00 · UTC equivalent: 2026-04-27 22:13:47 UTC
Sample Conversions
| Unix Timestamp | Note | PST Time |
|---|---|---|
| 1706745600 | Sample timestamp | 2024-01-31 16:00:00 PST |
| 1577836800 | New Year 2020 | 2019-12-31 16:00:00 PST |
| 1704067200 | New Year 2024 | 2023-12-31 16:00:00 PST |
How to Convert in Code
Python
from datetime import datetime
from zoneinfo import ZoneInfo
dt = datetime.fromtimestamp(1706745600, ZoneInfo('America/Los_Angeles'))
print(dt)
JavaScript (with Intl)
new Date(1706745600 * 1000).toLocaleString('en-US', {
timeZone: 'America/Los_Angeles'
})
PHP
$dt = new DateTime('@1706745600');
$dt->setTimezone(new DateTimeZone('America/Los_Angeles'));
echo $dt->format('Y-m-d H:i:s T');
Daylight Saving Time
This zone observes daylight saving time. The standard offset shown above shifts by one hour during the DST window. Always store timestamps as Unix epoch (UTC) - never as local wall-clock time - to avoid the dreaded "missing hour" and "duplicate hour" bugs at DST transitions.