The Time Zone Converter converts a date and time from any time zone to any other — covering all major time zones worldwide including daylight saving time adjustments.
Time Zone Converter
Convert a date and time between any two time zones.
How to Use This Calculator
- Enter the Date and Time you want to convert.
- Select the From time zone — the zone the entered time is in.
- Select the To time zone — the zone you want to convert to.
- Click Convert.
Common Time Zone Offsets (UTC)
- PST / PDT: UTC−8 / UTC−7 (Los Angeles, Vancouver)
- MST / MDT: UTC−7 / UTC−6 (Denver, Phoenix)
- CST / CDT: UTC−6 / UTC−5 (Chicago, Mexico City)
- EST / EDT: UTC−5 / UTC−4 (New York, Toronto)
- GMT / BST: UTC+0 / UTC+1 (London)
- CET / CEST: UTC+1 / UTC+2 (Paris, Berlin, Rome)
- IST: UTC+5:30 (Mumbai, New Delhi)
- JST: UTC+9 (Tokyo, Seoul)
- AEST / AEDT: UTC+10 / UTC+11 (Sydney)
Daylight Saving Time
Daylight Saving Time (DST) shifts clocks forward 1 hour in spring and back in fall in most of North America and Europe. This calculator uses the browser’s built-in Intl.DateTimeFormat API, which automatically applies the correct DST offset for the given date and time zone — no manual adjustment needed.
Frequently Asked Questions
Does this handle half-hour and 45-minute offsets?
Yes. Time zones like India (UTC+5:30), Nepal (UTC+5:45), and some Australian states (UTC+9:30) are fully supported through the IANA time zone database used by modern browsers.
What if I need to schedule a meeting across time zones?
Enter the meeting time in your local time zone and convert it to each participant’s zone. Check all converted times to confirm they fall within reasonable working hours for each participant.
How it works
Conversion uses the browser's Intl.DateTimeFormat API with IANA time zone identifiers. The input datetime is interpreted as being in the "from" time zone by computing the UTC offset for that zone at that specific moment (handling DST automatically), then reformatting the UTC time in the "to" time zone.Formula
UTC offset is derived from Intl.DateTimeFormat for the "from" zone; the UTC time is then formatted with Intl.DateTimeFormat for the "to" zone.