Time Zone Converter
Convert a date+time from one IANA time zone to another.
Result
How to use this calculator
- Enter date and time (24-hour HH:MM).
- Pick source and target time zones.
- Read converted time and offset difference.
About this calculator
Converts a wall-clock time in one IANA time zone to the equivalent wall-clock in another. Handles daylight saving time correctly via the Intl.DateTimeFormat API. The "hour difference" depends on date — DST shifts affect EU and US transitions in different weeks.
What this calculator does
This calculator converts a wall-clock date and time from one IANA time zone to another, handling daylight-saving transitions correctly via the browser's Intl.DateTimeFormat engine (which uses the system's IANA tz database snapshot). It surfaces the source UTC offset, the canonical UTC instant, the target UTC offset, and the absolute hour difference at that specific date — which matters because the difference between New York and London is 5 hours in winter but 4 in spring (US enters DST before the EU does).
How it works — the formula
Target_local = Source_local + (Target_offset_from_UTC − Source_offset_from_UTC)
DST adjustments add or subtract 1 hour during the appropriate window.A time zone is an offset from Coordinated Universal Time (UTC) plus optional daylight-saving rules. The IANA Time Zone Database (tz database) — maintained collaboratively and distributed via ICANN — is the authoritative source most operating systems use; it captures both current offsets and historical changes (e.g. Europe/Moscow has flipped DST policy three times this century). Subtract the source offset to reach UTC, then add the target offset to reach the destination local time; daylight-saving boundaries (US: 2nd Sunday March / 1st Sunday November; EU: last Sunday March / last Sunday October) introduce 1-hour discontinuities.
Worked examples
- Inputs:
- 9:00 am New York (UTC−5) → Tokyo (UTC+9)
- Output:
- 11:00 pm same day Tokyo (offset diff = +14 hr)
Winter-DST case. The 14-hour gap shrinks to 13 hours when New York is on DST (March–November) because Japan does not observe DST.
- Inputs:
- 2026-03-08 2:30 am New York
- Output:
- Does not exist — clocks jump from 2:00 to 3:00 in the US "spring forward" transition
Calendaring systems handle this by either bumping to 3:00 or rejecting the input. ISO 8601 recommends always recording instants in UTC for events near a DST boundary.
- Inputs:
- India Standard Time = UTC+5:30
- Output:
- 9:00 am UTC = 2:30 pm IST (some zones use 30- and 45-minute offsets)
Non-hour offsets exist: India (+5:30), Nepal (+5:45), Newfoundland (−3:30), Chatham Islands (+12:45). Simple "subtract N hours" mental math breaks for these.
When to use this vs other tools
Time Zone Converter handles wall-clock conversion. For date arithmetic, business-day counting, or single-zone calendar work, reach for a more specific tool.
- Days Between Dates
Use when the units are dates, not date+time. Both endpoints are interpreted as UTC midnight so the count is time-zone-independent — exactly what you want for deadlines and trip durations.
- Business Days Calculator
Use when the result should exclude weekends and US federal holidays — useful for SLAs and procurement timelines that operate in a single time zone's business calendar.
- Date Add / Subtract
Use to add or subtract days, weeks, months, or years from a known date — a different problem from converting the same instant between zones.
- Day of Week
Use to identify what day of the week a specific date falls on. Useful in conjunction with this tool to confirm that a converted-and-shifted date does (or does not) cross into a different weekday.
Authority note
The IANA tz database (formerly Olson database) is the reference data set every modern programming language, OS, and browser ships. This calculator reads the database snapshot bundled with the user's browser via Intl.DateTimeFormat — so its answers match what any IANA-aware system on the same OS version would compute.
Limitations
- Historical conversions before the IANA database's coverage start may be inaccurate; political changes are added as they happen.
- The "spring forward" hour does not exist in local time; the "fall back" hour repeats. Schedule events with explicit UTC if either case matters.
- Some zones use non-hour offsets (UTC+5:30, UTC+8:45) that simple "hour difference" tools handle incorrectly.
- The IANA database expects standard updates (typically 5–10 releases per year); software with a stale database can be wrong by an hour for affected regions.
Time-zone calculations follow the live IANA database snapshot bundled with the running browser/OS. For business-critical scheduling near DST boundaries, double-check with the destination party.
Frequently asked
Why are the offsets sometimes different across the year?+
What's a "wall-clock" time?+
Why use IANA names like "America/New_York"?+
How accurate is this?+
What if my time zone isn't listed?+
Related calculators
More tools you might like
Hand-picked tools that pair well with this one — same audience, same intent.
Add days, weeks, months, or years to any date and get the resulting date — handles month-end clamping correctly.
What day of the week was (or will be) any given date? Useful for historical curiosities and scheduling.
Count the exact number of days between any two dates — all calendar days, weekdays only, or business days (skipping US federal holidays). Pick whether to include both endpoints or just the difference.
List US federal holidays for any year (2024-2030 hardcoded) with day-of-week.
Count business days (Mon-Fri, excluding US federal holidays) between two dates.
Convert between 30 major world currencies using a snapshotted static rate table — clearly marked, not live.