Unix Timestamp Converter

Convert any Unix timestamp (epoch time) to a human-readable date, or a date back to its timestamp.

Timestamp → Date

Date → Timestamp

Result
August 21, 2026 10:20:51 PM UTC

What Is A Unix Timestamp?

A Unix timestamp (also called epoch time) is the number of seconds that have elapsed since midnight UTC on January 1, 1970 (the "Unix epoch"), not counting leap seconds. It's the standard way computers store and exchange points in time internally, since it's a single number that's easy to compare and do arithmetic on โ€” no time zone ambiguity involved.

Formula

Unix Timestamp = Seconds Elapsed Since 00:00:00 UTC, January 1, 1970

Examples

0 = Jan 1, 1970 12:00 AM UTC
946684800 = Jan 1, 2000 12:00 AM UTC
1609459200 = Jan 1, 2021 12:00 AM UTC
1787350851 = Aug 21, 2026 10:20 PM UTC

Frequently Asked Questions

What date is Unix timestamp 1787350851?

Unix timestamp 1787350851 is August 21, 2026 10:20:51 PM UTC.

What is the Unix epoch?

The Unix epoch is midnight UTC on January 1, 1970 โ€” the reference point (timestamp 0) that all Unix timestamps count forward from.

Are Unix timestamps affected by time zones?

No โ€” a Unix timestamp represents an exact moment in time (in UTC seconds), independent of any time zone. The time zone only matters when displaying it as a human-readable date.