ModernCalcs

Time Zone Converter

Convert times between world time zones. See the same moment in multiple cities simultaneously.

Converted Times

Source · India (IST) · UTC-18:30
Fri, 21 Aug 2026, 01:19
UTC · UTC+00:00
Thu, 20 Aug 2026, 19:49
New York (ET) · UTC-04:00
Thu, 20 Aug 2026, 15:49
London (GMT/BST) · UTC+01:00
Thu, 20 Aug 2026, 20:49
Tokyo (JST) · UTC-15:00
Fri, 21 Aug 2026, 04:49

Time Zone Converter — Accurate DST-Aware Conversion

Convert any time between any two of the world's 400+ IANA-named timezones, with Daylight Saving Time applied automatically. Whether you're scheduling a global team meeting, parsing an API response, or figuring out when your flight arrives, this tool handles the complexity of offsets and DST shifts so you don't have to.

Formula
Target local time = Source local time − Source UTC offset + Target UTC offset (adjusted for DST)

All conversions route through UTC as the intermediate anchor. DST shifts are applied automatically based on the IANA timezone database rules for the specific date entered.

What is UTC and Why Every Conversion Routes Through It

UTC (Coordinated Universal Time) is the global time standard with no daylight saving offset and no political adjustments — it is the same everywhere on Earth at every moment. All timezone conversions work by first converting the source time to UTC, then converting UTC to the target timezone. This two-step approach is how browsers, operating systems, and programming languages all handle timezone math internally. UTC is not a timezone you live in; it is the anchor that makes all other timezones work.

Daylight Saving Time — When Clocks Jump and Which Countries Skip It

Daylight Saving Time (DST) shifts clocks forward by one hour in spring ('spring forward') and back in autumn ('fall back') in most of North America, Europe, Australia, and parts of South America. The exact changeover dates differ by country — the US changes on the second Sunday of March, the EU changes on the last Sunday of March. Countries that do not observe DST include Japan (UTC+9, fixed), India (IST UTC+5:30, fixed), China (CST UTC+8, fixed), Singapore (UTC+8, fixed), and most of Africa. Scheduling with these countries is more predictable because their UTC offset never changes.

IANA Timezone Names vs UTC Offset Abbreviations

Time zone abbreviations like EST, IST, or CST are ambiguous: IST means Indian Standard Time (UTC+5:30), Irish Standard Time (UTC+1), and Israel Standard Time (UTC+2). CST is Central Standard Time (UTC-6) in the US but China Standard Time (UTC+8). The IANA timezone database solves this with unambiguous names like 'America/Chicago', 'Asia/Kolkata', and 'Asia/Shanghai' that encode both the UTC offset and the full historical DST rules. Always use IANA names in code — abbreviations are fine for human display but dangerous in logic.

Scheduling Global Meetings Without the Confusion

The safest practice for scheduling across timezones: anchor on UTC. Store the meeting as a UTC timestamp and display it in each participant's local time. In calendar invitations, include the UTC time alongside local times to protect against DST shifts. For recurring meetings that cross DST boundaries, explicitly decide whether the meeting moves with the clock (e.g., 'always 9 AM ET, which is 2 PM or 3 PM London depending on DST') or stays fixed relative to UTC ('always 14:00 UTC regardless of local clock'). Teams in DST-free timezones (India, Japan, Singapore) always get the same local time — no surprises.

Quick Reference

  • Japan (JST, UTC+9) — no DST, fixed year-round
  • India (IST, UTC+5:30) — no DST, fixed year-round
  • China (CST, UTC+8) — no DST, fixed year-round
  • Singapore (SGT, UTC+8) — no DST, fixed year-round
  • Most of Sub-Saharan Africa — no DST observed
  • Iceland (UTC+0) — no DST despite high latitude
  • Most of Southeast Asia (Thailand, Vietnam, Indonesia) — no DST

Frequently Asked Questions

What is UTC and why is it used as the anchor?

UTC (Coordinated Universal Time) is the primary time standard the world uses to regulate clocks. It has no daylight saving offset, never changes, and is the same everywhere on Earth. All timezone conversions go through UTC as an intermediate step: local time → UTC → target local time. This makes UTC the universal anchor for time arithmetic.

What is the difference between GMT and UTC?

For most practical purposes, GMT and UTC are interchangeable — both represent the time at the Prime Meridian with no offset. The technical difference: GMT is a timezone (it can observe summer time in some definitions), while UTC is an atomic time standard maintained by the Bureau International des Poids et Mesures. In software, UTC is always preferred because it is unambiguous and never shifts.

Why does Daylight Saving Time cause so many scheduling problems?

Daylight Saving Time (DST) shifts clocks forward (typically by 1 hour) in spring and back in autumn in most of North America, Europe, and Australia. This means a recurring meeting scheduled for '9 AM every Monday' moves by an hour relative to UTC when clocks change — and different countries change on different dates. A meeting that was '9 AM New York / 2 PM London' can become '9 AM New York / 3 PM London' after one country changes clocks. Using UTC for scheduling storage and converting to local time only at display avoids this.

Which countries do not observe Daylight Saving Time?

Major countries that do not use DST include Japan, India, China, most of Africa (including Nigeria, Kenya, South Africa), most of Southeast Asia (Singapore, Thailand, Indonesia, Malaysia), Iceland, and most of the Middle East. These countries maintain a fixed UTC offset year-round, making scheduling with them more predictable.

What is the IANA timezone database?

The IANA timezone database (also called the Olson database or tzdata) is the authoritative global database of historical and current timezone rules. It uses descriptive names like 'America/New_York', 'Europe/London', or 'Asia/Kolkata' rather than abbreviations. These names are unambiguous — 'EST' could mean Eastern Standard Time (UTC-5), Eastern Summer Time (Australia), or Eastern Standard Time of other regions. IANA names always refer to exactly one timezone with its full historical DST rules.

How do I schedule a recurring meeting across timezones without confusion?

Store the meeting time in UTC and compute local times for each attendee at render time. Be explicit about which timezone 'owns' the meeting — if the organizer is in New York, 9 AM ET is the anchor, and participants elsewhere adjust. For globally distributed teams, pick a fixed UTC time (e.g., 14:00 UTC) and never use ambiguous abbreviations. Communicate the UTC time alongside local times in invitations to avoid DST-related confusion.

What is a 'floating time' or wall-clock time?

A floating time (also called wall-clock time) is a time value that should stay at the same clock time regardless of timezone changes — for example, 'wake up at 7 AM wherever you are' or 'event starts at 3 PM local time'. Unlike a UTC-anchored timestamp (which represents a fixed absolute moment), floating times move with DST changes and are appropriate for alarm clocks, recurring calendar events, and local business hours.