Time Zone Calculator

UTC Is the Anchor, Not Either Endpoint

Converting a time from one zone to another isn't a direct jump — the reliable way to do it is to route through UTC. Subtract the source zone's offset to land on the UTC instant the source time represents, then add the target zone's offset to land on the equivalent local time there. This two-step routing avoids the sign errors that come from trying to reason directly about the difference between two offsets, especially across the date line or a DST boundary.

The Logic

UTC Time = Source Time − Source UTC Offset
Target Time = UTC Time + Target UTC Offset

A Worked Example

2:00 PM on July 17, 2026 in a zone at UTC−5 (U.S. Eastern), converted to a zone at UTC+9 (Japan):

Example time zone conversion
StepResult
Source time (UTC−5)2026-07-17 14:00
Converted to UTC2026-07-17 19:00
Converted to target (UTC+9)2026-07-18 04:00
Day change1 day later
Hour difference between zones14 hours

Offsets must be entered as the zone's current UTC offset, which shifts for zones that observe daylight saving time — for example, U.S. Eastern is UTC−5 in winter and UTC−4 during daylight saving time.

Where This Calculation Matters

  • Scheduling across regions — finding the local time of a meeting or call for participants in a different zone.
  • Flight and travel planning — working out arrival time in local terms after crossing multiple zones.
  • Server and log timestamps — converting a UTC-based log entry into a local time for review.

How to Use This Calculator

  1. Enter the date and time to convert.
  2. Enter the source UTC offset in hours (for example, −5 for U.S. Eastern Standard Time).
  3. Enter the target UTC offset in hours (for example, 3 for Moscow).
  4. Select Calculate to see the converted date and time, whether the calendar day shifted, and the hour difference between the two zones.

Related Calculations

To measure elapsed time once both timestamps are in the same zone, use the Time Duration Calculator. For unit conversions like hours to days, see the Time Conversion Calculator.