- What's Unix epoch?
- Seconds (or milliseconds) since January 1, 1970 UTC. The universal timestamp format for distributed systems.
- Seconds or milliseconds?
- The tool auto-detects: ~10 digits is seconds, ~13 is milliseconds. Override if the detection is wrong.
- Does it handle other epochs?
- Toggle for Windows FILETIME (1601 epoch, 100-ns units), NTP (1900 epoch), and Apple Cocoa (2001 epoch). Rare but occasionally needed.
- What's the Y2038 problem?
- 32-bit signed Unix timestamps overflow on January 19, 2038. Modern systems use 64-bit timestamps and avoid the problem. Legacy systems may need patching.