How Unix Timestamp Conversion Works
AnyTool converts between Unix timestamps and dates using native JavaScript Date and Intl.DateTimeFormat with a timeZone, which leverages the browser's bundled IANA timezone database for correct historical DST handling. Units are auto-detected by digit length (10=seconds, 13=milliseconds, 16=microseconds, 19=nanoseconds), with nanoseconds parsed via BigInt to avoid precision loss. Outputs include ISO 8601, RFC 2822/3339, UTC, locale, and relative time, and a live epoch clock ticks in real time. No conversion leaves the device.
- Native Date + Intl.DateTimeFormat (accurate DST)
- Auto unit detection: seconds/ms/µs/ns
- Full IANA timezone picker via Intl.supportedValuesOf
- ISO 8601, RFC 2822/3339, UTC, locale, relative time
- Live epoch clock; no upload; works offline
