🇳🇿 Epoch / Unix timestamp to Auckland time

Convert a Unix timestamp (seconds since 1 Jan 1970 UTC) into local time in Auckland (NZST/NZDT) — daylight saving applied for the date of the timestamp.

Right now: 1781980178 = Sun, Jun 21, 2026, 6:29 AM UTC+12:00
Current epoch (seconds) in Auckland (GMT+12)

Common timestamps in Auckland

Epoch (seconds)Auckland local timeNote
0Thu, Jan 1, 1970, 12:00 PM UTC+12:00the Unix epoch
1000000000Sun, Sep 9, 2001, 1:46 PM UTC+12:00one billion seconds
1225789200Tue, Nov 4, 2008, 10:00 PM UTC+13:00Nov 2008 (a DST edge in the US/EU)
1500000000Fri, Jul 14, 2017, 2:40 PM UTC+12:00Jul 2017
1609459200Fri, Jan 1, 2021, 1:00 PM UTC+13:00Jan 1, 2021 UTC

In code

// JavaScript — epoch seconds -> Auckland
const epoch = 1225789200;
new Date(epoch * 1000).toLocaleString("en-US", {
  timeZone: "Pacific/Auckland",
});

// Via the API:
// GET https://tz.wrapper-agency.com/api/v1/tz?from=UTC&to=Pacific%2FAuckland&epoch=1225789200

Other zones: UTC, New York, Los Angeles, London, Paris.