Tested tool guide
Tested browser tools
Checked August 16, 2026
What Unix Timestamp Tool does, with a checked example
Every Unix timestamp is a plain count of seconds since 1970-01-01 00:00:00 UTC, and the count itself carries no timezone. Paste one into this tool and it resolves to a calendar date and clock time, shown in UTC and in your local zone; type a date and it returns the count. Millisecond values, 13 digits instead of 10, are handled without a separate step. The first mistake most users make is scale: read a millisecond value as seconds and the date lands tens of thousands of years in the future, while the reverse lands in January 1970.
Worked example
A concrete input and expected output from the current implementation.
->
Expected output
2025-08-16 18:00:00 UTC (also written 1755367200000 in milliseconds)
Dividing 1,755,367,200 by 86,400 gives 20,316.75: 20,316 full days plus 0.75 of a day. Counting 20,316 days from 1970-01-01 reaches 2025-08-16, and 0.75 day is 18 hours, so the instant is 18:00 UTC. The millisecond form is the same digits with three zeros appended.