Take a date and time at one UTC offset and convert it to the equivalent wall-clock time at any other offset. The tool also shows the shared UTC instant, so you can see that both local times point to the same moment.
How it works
Wall-clock times only make sense relative to an offset. To convert, the tool reduces the source time to UTC and then re-expresses it at the target offset:
utcMinutes = sourceTime - sourceOffset
targetTime = utcMinutes + targetOffset
Offsets are stored in minutes (so +05:30 is +330, −04:00 is −240). The whole calculation is integer arithmetic on a timestamp, after which the timestamp is broken back into a date and time. When the result crosses midnight, the displayed date rolls forward or backward automatically.
Example
You have a meeting at 2026-06-06 09:00 in London during summer (UTC+1) and want the time in Tokyo (UTC+9):
- Convert to UTC: 09:00 − 1h = 08:00 UTC.
- Add the target offset: 08:00 + 9h = 17:00, same date.
- Result: 2026-06-06 17:00 at UTC+9.
Notes
This tool uses fixed offsets, not named timezones, so it never guesses about daylight saving rules. If a place is currently on summer time, choose the offset it is actually observing. India (+05:30) and Nepal (+05:45) are included because their offsets are not whole hours. Everything runs locally — no times leave your device.