The epoch
- Convert
- Timestamp to date
- Timestamp
- 0
- Timestamp unit
- Seconds
- Time zone
- UTC
- ISO 8601 (UTC)
- 1970-01-01T00:00:00Z
- Day of the week (UTC)
- Thursday
Checked against: POSIX definition; Python datetime.fromtimestamp(0, timezone.utc)
Unix timestamp converter: epoch seconds, milliseconds, microseconds or nanoseconds to an ISO 8601 UTC date and local time, and dates back to epoch time.
Unix time 1790523576.682 is 2026-09-27T15:39:36.682Z, a Sunday, which is the current time.
Unix time ignores leap seconds: every day has exactly 86,400 seconds.
Day 20723 after 1 January 1970 is Sun 27 Sep 2026; 56376 s after midnight is 15:39:36 UTC.
UTC is UTC+00:00 at that instant, so the local time is 2026-09-27 15:39:36.682 (Sun 27 Sep 2026).
A Unix timestamp counts the seconds since 00:00:00 UTC on 1 January 1970, the Unix epoch, with every day counted as exactly 86,400 seconds. The converter splits the count into whole days and seconds of the day, turns the day number into a calendar date, then applies the chosen zone's offset from the IANA time zone database. Date to timestamp runs the same steps backwards.
Developers use it to read log lines, database columns and API fields. With the unit left on automatic, up to 11 digits are read as seconds, 12 to 14 as milliseconds, 15 to 17 as microseconds and 18 or more as nanoseconds, so 1700000000000 is read as milliseconds: 22:13:20 UTC on 14 November 2023.
Results cover the years 0001 to 9999, the range of a four-digit ISO 8601 year. Negative timestamps are instants before 1970; −86400 is midnight UTC on 31 December 1969.
Checked against: POSIX definition; Python datetime.fromtimestamp(0, timezone.utc)
Checked against: Python 3.8: datetime.fromtimestamp(2147483647, timezone.utc)
Checked against: Python 3.8: datetime.fromtimestamp(1700000000, tz=Asia/Kolkata) = 2023-11-15 03:43:20+05:30
Checked against: Python 3.8: datetime.fromtimestamp(-86400, timezone.utc)
Software that stores Unix time in a signed 32-bit integer can count only to 2,147,483,647 seconds, reached at 03:14:07 UTC on 19 January 2038. One second later the value wraps to −2,147,483,648, which reads as 20:45:52 UTC on 13 December 1901. A signed 64-bit count, the usual size on current 64-bit systems, lasts about 292 billion years.
Count the digits. Present-day times have 10 digits in seconds, 13 in milliseconds, 16 in microseconds and 19 in nanoseconds; the seconds count reached 1,000,000,000 on 9 September 2001 and stays at 10 digits until 20 November 2286. JavaScript's Date.now() and Java's System.currentTimeMillis() return milliseconds, while the shell command date +%s and Python's time.time() return seconds.
No. POSIX defines every day as 86,400 seconds, so the 27 leap seconds added to UTC between 1972 and 2016 have no timestamps of their own, and 23:59:60 cannot be written as Unix time. Systems either repeat a second when one occurs or spread it out; Google, for example, smears a leap second over the 24 hours from noon to noon UTC.
Yes. A timestamp names one instant, and the zone only changes how that instant is written. Timestamp 0 is 00:00 UTC on 1 January 1970, which was 05:30 the same day in India, 19:00 on 31 December 1969 in New York, and 01:00 in London, where British Standard Time kept clocks on UTC+01:00 all year from 1968 to 1971.
Type now in the timestamp box, or ask the system clock: date +%s in a Linux or macOS shell, Math.floor(Date.now() / 1000) in JavaScript, int(time.time()) in Python, and SELECT UNIX_TIMESTAMP() in MySQL. The count grows by 86,400 a day and passes 1,800,000,000 at 08:00 UTC on 15 January 2027.
Accuracy depends on your inputs and the method's assumptions. Decimal arithmetic uses 50 significant digits, but estimates, numerical methods and source data can be less precise; the displayed rounding does not remove those limits. It is checked against 8 worked examples whose answers come from independent sources; for example, “The epoch” is checked against POSIX definition; Python datetime.fromtimestamp(0, timezone.utc).
POSIX.1-2017, §4.16 Seconds Since the Epoch; ISO 8601-1:2019 — Date and time representations; IANA Time Zone Database.
8 worked examples with independently sourced answers ship with this calculator. They run in the test suite; you can run them here too.
Time zone converter: turn a time in one zone into local time in up to 12 others, with daylight-saving changes applied and a meeting planner grid.
Countdown to a date: days, hours, minutes and seconds until (or since) a date and time in any time zone, ticking live and allowing for clock changes.
Add and subtract hours, minutes and seconds from a list of durations, with the total as H:MM:SS, decimal hours, minutes and seconds.
Calculate work hours, breaks and weekly timesheets. Use dates and a time zone for overnight shifts across daylight-saving changes and repeated hours.
Military time converter: 12-hour to 24-hour time and back, how it is spoken, time-zone letters with the Zulu equivalent, and a full-day chart.
Allow optional Google Analytics to measure page visits? Calculators work either way. Privacy and choices
Optional analytics: off.