The usual five-hour gap
Input
15 January 2026, 09:00 in Europe/London
Result
Thu 15 Jan 2026, 04:00 in America/New_York (EST, UTC-05:00)
Both zones are on standard time in January, so the familiar five hours applies.
Convert a wall-clock time between two time zones and see the offset, the gap, and whether daylight saving applies.
Start here Enter the date and time as it appears on the clock in the first zone.
America/New_York is 4 hours behind of UTC at this moment.
Understand the format
The gap between two time zones is not a fixed number. It changes whenever either zone starts or ends daylight saving, which is why recurring meetings drift twice a year.
People say "New York is five hours behind London", but that is only true for part of the year. A time zone is a set of rules, not a fixed number: Europe/London is UTC+0 in winter and UTC+1 in summer, and America/New_York is UTC-5 and UTC-4. The offset you get depends on which instant you ask about, which is why this page asks for a date as well as a time.
That is also why storing an offset is not the same as storing a zone. If you save "+01:00" you have recorded what the clock said once; if you save "Europe/London" you have recorded the rule, and next year's answer will still be right. For future events, always store the zone.
The United States and Europe do not change their clocks on the same date. In 2026 the United States moves on 8 March and Europe on 29 March, leaving three weeks where London and New York are four hours apart instead of five. The southern hemisphere reverses the whole arrangement, so the gap between London and Sydney swings between nine, ten, and eleven hours across the year.
This page reports the gap for the instant you chose and warns you when the two zones do not keep that gap all year. If you are scheduling something recurring, that warning is the one to read: a meeting fixed at "14:00 London, 09:00 New York" will be wrong for three weeks unless the calendar stores zones rather than offsets.
India is UTC+5:30, Nepal is UTC+5:45, and the Chatham Islands are UTC+12:45. Newfoundland runs at UTC-3:30. Any code that assumes offsets are whole hours, or that stores them as an integer number of hours, is wrong for hundreds of millions of people.
Lord Howe Island goes further and shifts by thirty minutes for daylight saving rather than the usual hour. These are not curiosities to be handled later; they are the cases that make a bespoke offset table unmaintainable and a proper time zone database essential.
Step by step
The conversion uses the Intl APIs in your browser, with the time zone rules your device already has. Nothing is sent anywhere.
Worked examples
Input
15 January 2026, 09:00 in Europe/London
Result
Thu 15 Jan 2026, 04:00 in America/New_York (EST, UTC-05:00)
Both zones are on standard time in January, so the familiar five hours applies.
Input
25 March 2026, 09:00 in Europe/London
Result
Wed 25 Mar 2026, 05:00 in America/New_York (EDT, UTC-04:00)
The United States has already moved to daylight saving and Europe has not, so the gap is four hours. A meeting fixed by offset is now an hour out.
Reference
| Zone | Standard | Daylight saving | Note |
|---|---|---|---|
| Asia/Kolkata | UTC+05:30 | None | Half-hour offset, no daylight saving at all. |
| Nepal (Asia/Katmandu) | UTC+05:45 | None | Forty-five minutes, fifteen ahead of India. |
| Australia/Lord_Howe | UTC+10:30 | UTC+11:00 | Shifts by thirty minutes, not an hour. |
| Pacific/Chatham | UTC+12:45 | UTC+13:45 | Forty-five minutes past a whole hour. |
| America/St_Johns | UTC-03:30 | UTC-02:30 | Newfoundland, half an hour from its neighbours. |
| Asia/Shanghai | UTC+08:00 | None | One zone across the whole country. |
Practical Guide
Troubleshooting
FAQ
Because daylight saving changes each zone offset at different times of year. The gap between two zones is only meaningful for a specific instant.
Store the zone, such as Europe/London, for anything in the future, because the rules can change. An offset is fine for recording an instant that has already happened, alongside the UTC time.
For everyday purposes they are the same. UTC is the modern time standard; GMT is a time zone that happens to equal UTC in winter. British clocks are on GMT in winter and BST in summer, so "GMT" is not a safe label for UK time year round.
From the IANA time zone database built into your browser, so it reflects whatever rules your system has been updated with rather than a table baked into this page.
Because the offset depends on the date. Without one, any answer would be a guess about which side of a daylight saving change you meant.
Go deeper