🇺🇸 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 timeNote
0Wed, Dec 31, 1969, 4:00 PM UTC-08:00the Unix epoch
1000000000Sat, Sep 8, 2001, 6:46 PM UTC-07:00one billion seconds
1225789200Tue, Nov 4, 2008, 1:00 AM UTC-08:00Nov 2008 (a DST edge in the US/EU)
1500000000Thu, Jul 13, 2017, 7:40 PM UTC-07:00Jul 2017
1609459200Thu, Dec 31, 2020, 4:00 PM UTC-08:00Jan 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

Other zones: UTC, New York, London, Paris, Tokyo.