What does "epoch time" mean?
Epoch time refers to the Unix epoch — January 1, 1970 00:00:00 UTC, the reference point from which Unix timestamps are calculated. "Epoch time" and "Unix timestamp" are used interchangeably.
Why does my timestamp show 1970?
If your timestamp shows a date near 1970, you likely have a Unix timestamp in milliseconds but are treating it as seconds. A 13-digit number like 1715429912000 divided by 1000 gives the correct 10-digit Unix seconds 1715429912. TimeTrace detects this automatically.
What is the maximum Unix timestamp value?
The 32-bit Unix timestamp limit is January 19, 2038 at 03:14:07 UTC (timestamp 2147483647), known as the Year 2038 problem. Modern systems use 64-bit integers, which extend the range to the year 292 billion.
Is ISO 8601 the same as UTC?
No. ISO 8601 is a format standard for representing dates and times (e.g. 2026-05-11T14:38:32Z). UTC is a timezone. An ISO 8601 string can include timezone information — the trailing Z means UTC, while +02:00 means UTC+2.
How do I handle daylight saving time (DST) with timestamps?
Unix timestamps are always in UTC and are not affected by DST. The DST conversion only happens when you display the timestamp in a local timezone. Always store and compare timestamps in Unix seconds or UTC — never in local time.
What is RFC 2822 date format?
RFC 2822 is the date format used in email headers: Mon, 11 May 2026 14:38:32 +0000. It is also produced by JavaScript's Date.toString() and Date.toUTCString() methods. TimeTrace parses and converts RFC 2822 dates automatically.
How do I share a specific timestamp with a colleague?
After converting any timestamp in TimeTrace, a Shareable link row appears in the results. Copy that URL — it includes a ?t= parameter. When your colleague opens it, the same timestamp is auto-loaded and converted. Works for JWT tokens too with ?jwt=.
Does TimeTrace send my data to a server?
No. TimeTrace runs entirely in your browser using native JavaScript APIs. No data — timestamps, JWT tokens, dates — is ever sent to any server. There is no backend, no analytics, and no tracking of any kind.