All tools
TOOL IDB-SWE-020
Timestamp converter

Desktop only

Engineering tools are available only on desktop screens.

Unix timestamp converter

Convert between Unix timestamps (seconds / ms / µs) and human-readable dates. ISO 8601, RFC 2822, multiple time zones, and 2038 / Y10K overflow checks.

Epoch number line unix seconds
Y2038 int32 max now 2026-05-18 1970 epoch 0 2100 12 —:—
Engineering notes

Unix epoch

  • Zero = 1970-01-01 00:00:00 UTC.
  • Int32 overflow: 2038-01-19 03:14:07 UTC (Y2038). Use int64 going forward.
  • JavaScript Date: ms since epoch, accurate to 100 µs in performance.now().

Common gotchas

  • JS Date.parse('YYYY-MM-DD') → UTC midnight, not local.
  • Postgres timestamptz stores UTC; type matters for DST.

Result

Live