Unix Timestamp Converter
Convert a Unix timestamp or epoch value to a date, or back
Paste a timestamp and get the date; paste a date and get the timestamp. The precision is detected from the digit count and shown so you can override it, and a number that is not Unix time is checked against the other eleven epochs too.
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.