How Timezone converter works
The timezone converter takes a date and time you enter and shows what that moment corresponds to in any IANA timezone you pick, handling daylight saving time automatically. You choose two timezones from a full list of IANA identifiers (for example, America/New_York and Europe/Paris), enter a date and time, and the converted result appears immediately. The conversion is correct for historical dates as well, because the browser's Intl API carries historical DST rule changes.
All conversion logic runs in JavaScript in your browser, using the Intl.DateTimeFormat and Temporal-compatible methods that ship with modern browsers. No date or time value you enter is sent to a server. The output is exactly what your operating system's own timezone database would compute, which is why the tool works offline once the page has loaded.