Time Zone Conversions Explained — How to Never Miss a Meeting Again
Learn how time zones work, how to convert between them, and practical tips for scheduling across UTC, EST, CET, JST and more. Includes free online tools.
Introduction
Time zones exist because the Earth rotates. When it's noon in London, it's 7 AM in New York and 9 PM in Tokyo. Simple enough in theory — but daylight saving shifts, half-hour offsets, and the international date line make real-world conversions surprisingly tricky.
If you've ever missed a meeting because "3 PM EST" turned out to be "3 PM EDT" (one hour different), or you've Googled "what time is it in India right now" for the fifth time this week, this guide is for you.
How Time Zones Work
UTC — The Reference Point
All time zones are defined as offsets from Coordinated Universal Time (UTC). UTC replaced GMT as the global standard and doesn't observe daylight saving time.
Some examples:
| Time Zone | UTC Offset | Major Cities |
|---|---|---|
| UTC-8 (PST) | -8:00 | Los Angeles, Seattle |
| UTC-5 (EST) | -5:00 | New York, Toronto |
| UTC+0 (GMT) | ±0:00 | London, Lisbon |
| UTC+1 (CET) | +1:00 | Berlin, Paris, Rome |
| UTC+5:30 (IST) | +5:30 | Mumbai, Delhi |
| UTC+9 (JST) | +9:00 | Tokyo, Seoul |
| UTC+10 (AEST) | +10:00 | Sydney, Melbourne |
The Daylight Saving Problem
Over 70 countries observe daylight saving time (DST), but they don't all switch on the same date. The US shifts clocks forward in March and back in November. Europe does it in the last weekends of March and October. Most of Asia, Africa, and South America don't observe DST at all.
This means the offset between two cities can change throughout the year:
- Winter: New York (EST, UTC-5) to London (GMT, UTC+0) = 5 hours
- Spring gap: For a few weeks, the US has shifted but Europe hasn't = 4 hours
- Summer: New York (EDT, UTC-4) to London (BST, UTC+1) = 5 hours again
Half-Hour and Quarter-Hour Offsets
Not all offsets are whole hours. India uses UTC+5:30, Nepal uses UTC+5:45, and the Chatham Islands use UTC+12:45. This catches people off guard when converting.
How to Convert Between Time Zones
The Mental Math Method
- Find the UTC offset for both locations
- Subtract the source offset from the target offset
- Add the difference to the source time
Example: Convert 2:00 PM in New York (UTC-5) to Tokyo time (UTC+9):
- Difference: 9 - (-5) = 14 hours
- 2:00 PM + 14 hours = 4:00 AM (next day)
Using a Time Zone Converter
For anything involving DST or unusual offsets, use a time zone converter tool. Enter the time in one zone, select the target zone, and get an instant result that accounts for DST automatically.
Common Conversion Scenarios
Scheduling Meetings Across Continents
When scheduling between US, Europe, and Asia, the overlap window is narrow:
- US East + Europe: 9 AM–12 PM EST (2–5 PM CET)
- US West + Asia: 5–8 PM PST (9 AM–12 PM JST next day)
- Europe + Asia: 8–10 AM CET (3–5 PM JST)
There's almost no convenient overlap for all three regions simultaneously. If you must include all three, 8 AM EST / 1 PM GMT / 10 PM JST is the least painful option.
Working With UTC Timestamps
Developers, DevOps engineers, and anyone reading server logs deals with UTC timestamps daily. A log entry showing 2026-04-16T14:30:00Z (the Z means UTC) translates to:
- 10:30 AM EDT (New York)
- 3:30 PM BST (London)
- 11:30 PM JST (Tokyo)
Use a time calculator to add or subtract hours from UTC timestamps quickly.
Event Countdowns
Launching a product at a specific time? Use a countdown timer set to the exact moment. Share the countdown link with your team so everyone sees the same target regardless of their local time zone.
Time Zone Abbreviations to Know
Abbreviations are ambiguous — "CST" can mean Central Standard Time (UTC-6), China Standard Time (UTC+8), or Cuba Standard Time (UTC-5). Always clarify with a UTC offset when precision matters.
| Abbreviation | Full Name | UTC Offset |
|---|---|---|
| EST/EDT | Eastern (US) | -5 / -4 |
| CST/CDT | Central (US) | -6 / -5 |
| PST/PDT | Pacific (US) | -8 / -7 |
| GMT/BST | Greenwich / British Summer | +0 / +1 |
| CET/CEST | Central European | +1 / +2 |
| IST | India Standard | +5:30 |
| JST | Japan Standard | +9 |
| AEST/AEDT | Australian Eastern | +10 / +11 |
Date Line and Day Changes
The International Date Line runs roughly along the 180° meridian in the Pacific Ocean. Crossing it east-to-west skips a day; west-to-east repeats a day. This is why a flight from Sydney to Los Angeles can arrive "before" it departed.
When converting between zones far apart (like US to Australia), always check whether the date changes too. A Friday afternoon meeting in New York is a Saturday morning meeting in Sydney.
Practical Tips
- Store times in UTC — Internally, always use UTC. Convert to local time only for display.
- Use ISO 8601 format —
2026-04-16T14:30:00Zis unambiguous. "April 16 at 2:30" is not. - Include the offset — When writing times for an international audience, add the UTC offset: "2:30 PM UTC-5".
- Don't trust abbreviations alone — Say "3 PM New York time" instead of "3 PM EST" (which may actually be EDT).
- Account for DST transitions — If scheduling a recurring meeting, check that it doesn't shift by an hour twice a year.
Conclusion
Time zone math doesn't have to be painful. Know your UTC offsets, watch out for DST transitions, and use a time zone converter when in doubt. For date arithmetic involving hours and minutes, the time calculator handles the edge cases for you.