Unix Timestamp Converter
Current Unix time — live, accurate to nanoseconds. Click any value to copy.
🌍
Enter a Unix timestamp above
See it as local time in 51countries & cities worldwide
| Period | Seconds | |
|---|---|---|
| 1 Minute | 60 | |
| 1 Hour | 3,600 | |
| 1 Day | 86,400 | |
| 1 Week | 604,800 | |
| 1 Month (avg) | 2,629,746 | |
| 1 Year (avg) | 31,556,952 | |
| 10 Years | 315,569,520 | |
| 100 Years | 3,155,695,200 |
Unix time (also known as Unix timestamp, POSIX time, or Epoch time) is a system for describing a point in time. It is the number of seconds that have elapsed since January 1, 1970 at 00:00:00 UTC — a moment known as the Unix Epoch.
Unix time is used universally in operating systems, programming languages, databases, and network protocols. Because it is a single integer, it is timezone-independent and trivial to compare, store, and transmit.
The 2038 Problem: Systems that store Unix time as a 32-bit signed integer will overflow on at 03:14:07 UTC (timestamp 2,147,483,647). Modern systems use 64-bit integers, which will not overflow for approximately 292 billion years.
Need to work with Unix timestamps in code?
View Code Examples for 12+ Languages →