7 min read
2026-01-25
A Unix Timestamp (epoch time) is the number of seconds that have elapsed since January 1, 1970, 00:00:00 UTC. This format is widely used in programming for storing and transmitting dates.
This date was chosen by the creators of the Unix operating system as the reference point. Since then, the format has become the de facto standard for working with dates in IT.
| Timestamp | Date and Time (UTC) |
|---|---|
| 0 | January 1, 1970, 00:00:00 |
| 1000000000 | September 9, 2001, 01:46:40 |
| 1700000000 | November 14, 2023, 22:13:20 |
| 1800000000 | January 14, 2027, 08:00:00 |
Enter a numeric value and get a readable date adjusted for your time zone.
Select a date and time — get the Unix Timestamp in seconds and milliseconds.
32-bit systems store timestamps as signed 32-bit integers. The maximum is 2,147,483,647, which corresponds to January 19, 2038. After that, an overflow will occur.
Convert timestamps with the Unix Timestamp converter.
See also: Timezone Converter, Date Difference, World Clock