🇺🇸 Epoch / Unix timestamp to Los Angeles time
Convert a Unix timestamp (seconds since 1 Jan 1970 UTC) into local time in Los Angeles (PT (PST/PDT)) — daylight saving applied for the date of the timestamp.
Right now: 1781875492 = Fri, Jun 19, 2026, 6:24 AM UTC-07:00
Current epoch (seconds) in Los Angeles (PDT)
Common timestamps in Los Angeles
| Epoch (seconds) | Los Angeles local time | Note |
|---|---|---|
| 0 | Wed, Dec 31, 1969, 4:00 PM UTC-08:00 | the Unix epoch |
| 1000000000 | Sat, Sep 8, 2001, 6:46 PM UTC-07:00 | one billion seconds |
| 1225789200 | Tue, Nov 4, 2008, 1:00 AM UTC-08:00 | Nov 2008 (a DST edge in the US/EU) |
| 1500000000 | Thu, Jul 13, 2017, 7:40 PM UTC-07:00 | Jul 2017 |
| 1609459200 | Thu, Dec 31, 2020, 4:00 PM UTC-08:00 | Jan 1, 2021 UTC |
In code
// JavaScript — epoch seconds -> Los Angeles
const epoch = 1225789200;
new Date(epoch * 1000).toLocaleString("en-US", {
timeZone: "America/Los_Angeles",
});
// Via the API:
// GET https://tz.wrapper-agency.com/api/v1/tz?from=UTC&to=America%2FLos_Angeles&epoch=1225789200