Tested tool guide
Tested browser tools
Checked August 16, 2026
What Timestamp Forensics Tool does, with a checked example
Paste a timestamp in any of the formats investigators actually meet - Unix epoch seconds, milliseconds, or microseconds; Windows FILETIME (100-nanosecond units since 1601); or the classic Macintosh epoch (seconds since 1904) used by HFS+ - and the tool returns the UTC date and time. Work in reverse too: enter a date, get the number for each format. The arithmetic is a fixed offset, so the tool's real job is identifying the unit and epoch. Two things surprise people: NTFS stores FILETIME values unchanged, so the two are the same number, and HFS+ catalog times are stored as local wall-clock time, not UTC.
Worked example
A concrete input and expected output from the current implementation.
->
Expected output
Unix (seconds): 2023-11-14 22:13:20 UTC
Milliseconds: 1700000000000
Windows FILETIME / NTFS: 133444736000000000
HFS+ (seconds since 1904): 3782844800
1700000000 is 19,675 days and 80,000 seconds after 1970-01-01; 19,675 days ends on 2023-11-14 and 80,000 seconds is 22:13:20, so the instant is 2023-11-14 22:13:20 UTC. The FILETIME value adds the 11,644,473,600-second gap between the 1601 and 1970 epochs and scales to 100-nanosecond ticks; the HFS+ value adds the 2,082,844,800-second gap between 1904 and 1970.