Timezone Offset Converter
Convert a time of day from one UTC offset to another to find the equivalent time across timezones.
e.g., EST = -5, PST = -8, IST = +5.5
e.g., CET = +1, JST = +9
Target Time (24hr)
20.0 hour
Formula
## Timezone Conversion **Target Time = Source Time + (Target Offset - Source Offset)** If the result exceeds 24, subtract 24 (next day). If negative, add 24 (previous day). ### Common UTC Offsets | Zone | Offset | |---|---| | PST | UTC-8 | | MST | UTC-7 | | CST | UTC-6 | | EST | UTC-5 | | GMT/UTC | UTC+0 | | CET | UTC+1 | | IST | UTC+5:30 | | JST | UTC+9 |
Exemplo Resolvido
Convert 2:00 PM EST (UTC-5) to CET (UTC+1).
- 01Difference = +1 - (-5) = +6 hours
- 02Target time = 14 + 6 = 20:00 (8:00 PM CET)
- 03UTC equivalent = 14 + 5 = 19:00 UTC
Perguntas Frequentes
What about daylight saving time?
DST shifts the UTC offset by 1 hour. EDT (US Eastern Daylight) is UTC-4, while EST (Standard) is UTC-5. Make sure to use the correct offset for the date in question.
What are half-hour timezones?
Some regions use UTC offsets of :30 or :45. India (IST) is UTC+5:30, Nepal is UTC+5:45, Newfoundland (Canada) is UTC-3:30.
Aprender