BuildUtilities

What is a Unix timestamp?

The number of seconds (or milliseconds) since January 1, 1970 UTC, the time format computers use under the hood.

Pick any moment in time. Subtract midnight UTC on January 1, 1970. The number of seconds you get is the Unix timestamp.

It's how nearly every operating system, database, and programming language stores time internally. Time zones are layered on top for display only.

Modern timestamps usually use milliseconds (13 digits) instead of seconds (10 digits). And in 2038, signed 32-bit timestamps overflow, the 'Year 2038 problem'. 64-bit timestamps fix it.

May 20, 2026, 12:00 UTC

1779696000

Related tools

Keep reading

Tip Jar