Time Zone Confusion: A Practical Guide to Working Across Time Zones

Time zone arithmetic seems simple until you get it wrong and miss a meeting by an hour — or a day. UTC, GMT, offsets, DST, and the IANA database all interact in ways that catch people out regularly. Here's a ground-up explanation of how time zones actually work, and how to schedule reliably.

UTC vs GMT: Are They the Same?

For most practical purposes, UTC (Coordinated Universal Time) and GMT (Greenwich Mean Time) are interchangeable. Both represent the same base reference time. However, they are technically different:

The difference matters in edge cases: the UK observes BST (British Summer Time = UTC+1) in summer, so "London time" is not always GMT. UTC+0 is always UTC+0, regardless of season.

What UTC Offsets Mean

Time zones are defined by their offset from UTC. UTC+5:30 (India Standard Time) means local time is 5 hours and 30 minutes ahead of UTC. UTC-8 (Pacific Standard Time) is 8 hours behind UTC.

If it is 12:00 UTC, then:
London (UTC+0 in winter) → 12:00 | Dubai (UTC+4) → 16:00 | New York EST (UTC−5) → 07:00 | Tokyo (UTC+9) → 21:00

The calculation is simple arithmetic: add the offset to UTC for ahead-of-UTC zones, subtract for behind-UTC zones. The catch is that offsets change with Daylight Saving Time.

The DST Trap

Daylight Saving Time (DST) shifts clocks forward by one hour in spring and back in autumn to extend evening daylight. It sounds simple. The problems:

public

Convert times across time zones

GlintKit's time zone converter shows current time in any zone and handles DST automatically.

arrow_forward Open Time Zone Converter

The IANA Time Zone Database

Behind every reliable time zone tool is the IANA Time Zone Database (also called the Olson database), a continuously maintained registry of all historical and current time zone rules. It uses named identifiers like America/New_York, Asia/Dubai, and Europe/London rather than offset strings, because offsets change with DST and political decisions.

This is why you should always schedule meetings using named time zones rather than offset strings. "4pm UTC+4" is ambiguous — it doesn't say whether DST applies. "4pm Asia/Dubai" is unambiguous because Dubai doesn't observe DST and is always UTC+4.

ISO 8601: The Right Way to Write Times

ISO 8601 is the international standard for representing dates and times. A complete ISO 8601 datetime with timezone offset looks like:

2026-02-24T14:30:00+05:30 — February 24, 2026 at 2:30pm Indian Standard Time

The format is: YYYY-MM-DD, T separator, HH:MM:SS, then the UTC offset. Using Z instead of +00:00 indicates UTC explicitly. This format is unambiguous: it specifies both the exact moment in time and the local clock reading, so there is no room for misinterpretation.

When sharing meeting times across teams, always include the UTC equivalent: "3pm Dubai time (11am UTC)" removes all ambiguity.

Practical Tips for Remote Teams

Best Overlap Windows by Region Pair

When scheduling across major regions, these windows represent the most common overlap during business hours (9am–6pm local):