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
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
Examples
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.