🇦🇺 Epoch / Unix timestamp to Sydney time
Convert a Unix timestamp (seconds since 1 Jan 1970 UTC) into local time in Sydney (AEST/AEDT) — daylight saving applied for the date of the timestamp.
Right now: 1781875492 = Fri, Jun 19, 2026, 11:24 PM UTC+10:00
Current epoch (seconds) in Sydney (GMT+10)
Common timestamps in Sydney
| Epoch (seconds) | Sydney local time | Note |
|---|---|---|
| 0 | Thu, Jan 1, 1970, 10:00 AM UTC+10:00 | the Unix epoch |
| 1000000000 | Sun, Sep 9, 2001, 11:46 AM UTC+10:00 | one billion seconds |
| 1225789200 | Tue, Nov 4, 2008, 8:00 PM UTC+11:00 | Nov 2008 (a DST edge in the US/EU) |
| 1500000000 | Fri, Jul 14, 2017, 12:40 PM UTC+10:00 | Jul 2017 |
| 1609459200 | Fri, Jan 1, 2021, 11:00 AM UTC+11:00 | Jan 1, 2021 UTC |
In code
// JavaScript — epoch seconds -> Sydney
const epoch = 1225789200;
new Date(epoch * 1000).toLocaleString("en-US", {
timeZone: "Australia/Sydney",
});
// Via the API:
// GET https://tz.wrapper-agency.com/api/v1/tz?from=UTC&to=Australia%2FSydney&epoch=1225789200Other zones: UTC, New York, Los Angeles, London, Paris.