geography calculators

Time Zone Difference Calculator

Convert a local time from one time zone to another and find the hour difference between any two UTC offsets. Perfect for scheduling international meetings or coordinating with remote teams.

About this calculator

Time zones are defined as offsets from Coordinated Universal Time (UTC), ranging from UTC−12 to UTC+14. To convert a time from one zone to another, you calculate the offset difference: diff = timezone2 − timezone1. The converted hour is then: newHour = (hour1 + diff + 24) mod 24, where the +24 ensures the result stays non-negative before the modulo operation. Minutes are carried over directly. For example, if it is 15:30 in UTC+1 and you want UTC+8, the difference is 7 hours, placing the time at 22:30. This calculator handles cross-midnight wrapping automatically, so a result of 25 becomes 01:00 the next day.

How to use

Suppose a team meeting is at 09:00 in New York (UTC−5) and you want to know the time in Tokyo (UTC+9). Enter timezone1 = −5, timezone2 = 9, hour1 = 9, minute1 = 0. The difference is 9 − (−5) = 14 hours. New hour = (9 + 14 + 24) mod 24 = 47 mod 24 = 23. The meeting falls at 23:00 in Tokyo — late evening. Add the minutes (0 / 60 = 0), so the result is 23.0, or 11:00 PM Tokyo time.

Frequently asked questions

How do daylight saving time changes affect time zone difference calculations?

Daylight saving time (DST) shifts a region's UTC offset by +1 hour during summer months, which can change the difference between two cities temporarily. For example, New York moves from UTC−5 to UTC−4 during DST, narrowing its gap with London. This calculator uses fixed UTC offsets that you enter manually, so you need to account for DST by adjusting the offset yourself during those periods. Always verify current offsets using a reliable source like timeanddate.com when scheduling critical international meetings.

What does UTC offset mean and how do I find my city's offset?

UTC offset is the number of hours (and sometimes half-hours) by which a time zone differs from Coordinated Universal Time. Cities east of the prime meridian have positive offsets (e.g., Paris is UTC+1 in winter), while cities to the west have negative offsets (e.g., Chicago is UTC−6 in winter). You can find any city's current UTC offset by searching 'current UTC offset [city name]' or checking resources like timeanddate.com or the IANA time zone database. Half-hour offsets (like India at UTC+5:30) can be entered as decimals, e.g., 5.5.

Why does the time zone formula add 24 before applying modulo 24?

When the offset difference is negative — for example, converting from UTC+5 to UTC−3 — a simple addition could produce a negative hour value like −3, which has no clock meaning. Adding 24 before the modulo operation shifts all possible results into the positive range, ensuring the output is always between 0 and 23. The modulo 24 then wraps any value of 24 or above back to the correct hour (e.g., 25 becomes 1). This mathematical trick elegantly handles both forward and backward time conversions in a single step.