Convert datetimes between IANA timezones instantly. DST-aware. Pick source and target timezones, enter a datetime, and see the converted result with UTC offsets and abbreviations.
IANA timezones (e.g., America/New_York) are the standard identifiers used by operating systems and programming languages. Unlike fixed offsets like UTC-5, IANA timezones encode the full history of DST transitions —meaning a conversion for July 4, 2026 correctly applies EDT (UTC-4), while a conversion for January 4, 2026 uses EST (UTC-5).
UTC offsets are not timezones. UTC-5 could be Eastern Standard Time, Central Daylight Time, or Peru Time —only the IANA identifier disambiguates. Always store IANA names in your database alongside UTC timestamps.
DST transitions create two edge cases: the "spring forward" gap (e.g., 02:00—3:00 does not exist in US Eastern) and the "fall back" overlap (01:00—2:00 occurs twice). This converter uses the browser's built-in Intl API which handles these according to the host system's locale data.
| Best practice | Store all times as UTC. Convert to local timezone only at the presentation layer. |
|---|---|
| Common pitfall | Using fixed offsets (+05:30) instead of IANA names —DST rules change over time. |
See also: Unix Timestamp Converter · ISO 8601 Formatter