Convert Unix timestamps to dates
Timestamp Converter converts a Unix timestamp (in seconds) to a date and back, entirely in your browser — nothing is uploaded to a server. There's no timezone selector; dates always display in your browser's local timezone via toLocaleString(). It expects timestamps in seconds, not milliseconds — paste a 13-digit millisecond timestamp and it will be misinterpreted as a date thousands of years in the future.
What is a Unix timestamp?
The number of seconds elapsed since January 1, 1970, 00:00:00 UTC — a common way computers represent a point in time.
Can I select a specific timezone for the conversion?
No — there's no timezone dropdown. Dates are always shown in your browser's local timezone.
Does it support millisecond timestamps?
No — timestamps are interpreted as seconds. A 13-digit millisecond timestamp (common in JavaScript's Date.now()) will convert to an incorrect, far-future date unless you divide it by 1000 first.
Is my data uploaded to a server?
No, all conversion happens locally in your browser.