Time & Date

Timezone converters, date calculators, countdowns, and timestamp tools.

10 tools available

Time & Date tools resolve the surprisingly hard problems of working with time: converting between time zones, counting days between dates, building countdowns, and translating Unix timestamps to and from human dates. Time zones, daylight saving, and leap years make this error-prone by hand — these tools apply the rules consistently using the browser’s own internationalisation engine.

Under the hood, almost everything reduces to a single number: the Unix timestamp, the count of seconds since 1 January 1970 UTC. Storing time as that absolute instant and formatting it per time zone only at display time is the pattern that keeps software correct across the globe. The tools here let you move fluidly between epoch seconds, ISO 8601 strings, and local representations, which is exactly what you need when debugging logs, scheduling across regions, or building a launch countdown.

Time formats & standards

FormatExampleNotes
Unix epoch1786531200Seconds since 1970-01-01 UTC
ISO 86012026-06-11T14:00:00ZUnambiguous, sortable, UTC Z
RFC 2822Thu, 11 Jun 2026 14:00:00 +0000Email / HTTP headers
UTC offset+05:30Fixed offset, ignores DST
IANA zoneAmerica/New_YorkFull DST rules, preferred

Store and transmit time in UTC (or epoch); convert to a local zone only for display.