Unix timestamp (or Epoch time) is the number of seconds that have elapsed since 00:00:00 UTC on January 1, 1970. This is the most popular way to represent time in programming, databases, and APIs.
Example: 1700000000 = November 14, 2023 at 22:13:20 UTC.
Metoolzy Timestamp Converter helps you convert back and forth between timestamps and human-readable dates and times.
1700000000) in the left box → view results below2025-01-15 10:30:00) in the right box| Timestamp | Date and Time (UTC) | Notes |
|---|---|---|
0 |
1970-01-01 00:00:00 | Unix Epoch |
1000000000 |
2001-09-09 01:46:40 | 1 billion seconds |
1700000000 |
2023-11-14 22:13:20 | — |
2000000000 |
2033-05-18 03:33:20 | 2 billion seconds |
2147483647 |
2038-01-19 03:14:07 | Year 2038 problem (32-bit max) |
Traditional Unix timestamp is in seconds (10 digits). JavaScript Date.now() returns milliseconds (13 digits). The tool automatically detects both.
Unix timestamps are always UTC. The tool displays both Local Time (based on the browser’s timezone) and UTC for you to compare.
32-bit systems store the timestamp as a signed int (max 2,147,483,647) → overflows on Jan 19, 2038. 64-bit systems are not affected.
See more: UUID Generator · Hash Generator · Cron Parser