Tested tool guide
Tested browser tools
Checked August 16, 2026
What Timestamp Converter does, with a checked example
Paste a timestamp in any supported format - ISO 8601, RFC 2822, Unix seconds, Windows FILETIME, and others - and this tool returns the same instant rendered in every format it handles, so one paste yields the full conversion set. The first step is classification: digit count and structure decide what you pasted before any conversion runs. The thing users most often get wrong is timezone. An integer timestamp names an instant on the timeline, not a clock reading; the rendered time changes with the display zone, and text dates that omit a zone are inherently ambiguous. The other classic error: a 13-digit millisecond value read as seconds lands in the year 31,969.
Worked example
A concrete input and expected output from the current implementation.
->
Expected output
ISO 8601: 2000-01-01T00:00:00Z | RFC 2822: Sat, 1 Jan 2000 00:00:00 +0000 | Unix seconds: 946684800 | Unix milliseconds: 946684800000 | Windows FILETIME: 125911584000000000
946684800 seconds is exactly 10,957 days after the Unix epoch, which lands on 2000-01-01T00:00:00Z, a Saturday; the weekday is computed from the date, not read from the input. The FILETIME value adds the 11,644,473,600 seconds between the 1601 and 1970 epochs and counts 100-nanosecond ticks.