How Timestamp Converter works
The timestamp converter translates between Unix epoch values and human-readable dates in both directions. Paste an epoch number and it shows the corresponding UTC date-time and your local date-time, automatically detecting whether the value is in seconds or milliseconds. Type a date and time and it converts back to an epoch in both units. All conversion logic runs inside your browser using the JavaScript Date API; nothing you enter is transmitted to any server.
The auto-detection between seconds and milliseconds uses a simple threshold: values above 9999999999 are treated as milliseconds (covering dates from 2001 onward in ms), and values at or below that are treated as seconds (covering dates up to 2286). If your timestamp falls in an ambiguous range, a toggle lets you override the guess. The local time conversion uses your browser's own time zone, including any daylight saving offset in effect for that date.