How time zone converter works
A time zone converter takes a wall-clock date and time in one time zone and shows the same instant in another zone. The trick is that local time on a clock is not an absolute moment — you must account for each zone offset from UTC, including daylight saving time, before the conversion is correct.
This converter uses IANA time zone names (like America/New_York or Asia/Kolkata) and the JavaScript Intl API, which knows the historical and current offset and daylight saving rules for each zone. Enter the source date and time and pick the two zones; the tool resolves the source instant and formats it in the target zone, showing both offsets (for example GMT-04:00 and GMT+01:00).
Always use the full IANA name rather than an abbreviation. "EST" is ambiguous (it can mean US Eastern or Australian Eastern), while "America/New_York" is unambiguous and auto-switches between standard and daylight time. When scheduling across zones, double-check the offsets shown — DST changes mean the same conversion can differ by an hour depending on the date.