Unix Timestamp Converter
Convert a Unix timestamp to a date, or back
Paste a timestamp and get the date; paste a date and get the timestamp. Seconds, milliseconds, microseconds and nanoseconds are detected from the digit count, and the guess is shown so you can override it.
Questions people ask
The things that come up about unix timestamp converters, answered plainly.
What is a Unix timestamp?
A count of seconds since 1 January 1970 at 00:00:00 UTC — the Unix epoch. It names one instant with no time zone attached, which is what makes it unambiguous to store and send.
How do I tell seconds from milliseconds?
Count the digits. For dates near the present, 10 digits is seconds, 13 is milliseconds, 16 is microseconds and 19 is nanoseconds. A 13-digit number read as seconds lands in the year 45,000, which is the usual sign something is off by a thousand.
Is the current Unix time the same everywhere?
Yes. The timestamp is identical on every machine on Earth at the same moment; only the local rendering differs. That is the entire reason to store timestamps rather than local times.
Related tools
Seconds, milliseconds, microseconds and nanoseconds, in both directions.