Local time everywhere on Earth is described as a distance from a single reference clock, and those distances are the UTC offsets. They look simple — a sign, a number of hours, sometimes a number of minutes — yet they conceal two surprises. The full range is wider than a day, and the number attached to a place is not fixed. Both facts cause a steady trickle of scheduling errors.
This reference sets out the whole range from UTC−12 to UTC+14, explains why it spans twenty-six hours rather than twenty-four, names the territories at each end, and draws the line between an offset and a time zone. The complete table, with every value and the regions that use it, is on the UTC offsets table.
What Is a UTC Offset?
A UTC offset is the difference between local clock time in a place and Coordinated Universal Time, written as a sign and an hour-and-minute value. Add the offset to UTC and you get local time: at 12:00 UTC, a region on UTC+02:00 reads 14:00.
The reference point matters. Coordinated Universal Time is an atomic time scale kept in step with the Earth's rotation, and it does not itself observe daylight saving, so it makes a stable baseline. The related but distinct term GMT is examined in UTC vs GMT; for offsets the two are used interchangeably in casual writing, though only one of them is technically a time scale.
The Full Range of UTC Offsets
Current offsets run from UTC−12:00 to UTC+14:00, a span of twenty-six hours. Every whole hour in that range is in use somewhere, and a small number of regions sit on half-hour or quarter-hour values between them.
- UTC−12:00 to UTC−08:00: the remote mid-Pacific, Hawaii, Alaska and the Pacific coast of North America.
- UTC−07:00 to UTC−03:00: the rest of the Americas, from the mountain states through the Caribbean to Argentina and Brazil.
- UTC−02:00 to UTC+00:00: the mid-Atlantic islands, Iceland, Ireland, Portugal, the United Kingdom and West Africa.
- UTC+01:00 to UTC+04:00: continental Europe, most of Africa, Turkey, the Gulf states and western Russia.
- UTC+05:00 to UTC+08:00: South and Central Asia, China, South East Asia and Western Australia.
- UTC+09:00 to UTC+14:00: Japan, Korea, eastern Australia, New Zealand and the Pacific islands.
Because daylight saving shifts many regions by an hour for part of the year, the set of UTC offsets actually observed is larger than the set of standard ones. A little under forty distinct values appear across a full calendar year, and a handful of them exist for only a few months at a time.
Why Does the Range Exceed 24 Hours?
Because the International Date Line is not a straight line. States on either side of the Pacific choose which calendar day they keep, and their UTC offsets follow that choice rather than their longitude, and several have chosen a day that puts them far ahead of, or behind, the meridian would suggest. The result is a 26-hour spread.
The practical consequence is that for two hours out of every twenty-four, three different calendar dates are in use somewhere in the world at once. When it is late morning in London, the far western Pacific is already on tomorrow while a handful of uninhabited islands are still on yesterday. Anyone who books flights or runs a global payroll meets this eventually, and the world clock makes it visible at a glance.
Which Places Sit at the Extremes?
UTC+14:00 belongs to the Line Islands of Kiribati, which are first in the world to start each day. UTC−12:00 applies to Baker Island and Howland Island, uninhabited United States territories in the mid-Pacific that are last.
Kiribati produced the extreme deliberately. The country straddles the date line, and until 1995 its eastern islands were a full day behind its capital — an absurdity for a single administration. Moving the line east of the Line Islands unified the country's calendar and created the UTC+14:00 value in the process. Nearby, Samoa and Tokelau made a comparable jump in 2011 to align with Australia and New Zealand rather than the United States.
Offsets That Are Not Whole Hours
Roughly two dozen regions keep clocks that are thirty or forty-five minutes off the hour. These UTC offsets are a standing test of whether software handles fractional values properly rather than assuming an integer number of hours.
- UTC+05:30: India and Sri Lanka, a single offset for a country spanning some 2,000 kilometres east to west.
- UTC+05:45: Nepal, set to the meridian of a peak near Kathmandu and deliberately distinct from its neighbour.
- UTC+12:45: the Chatham Islands of New Zealand, which also observe daylight saving and move to UTC+13:45.
- UTC−03:30: Newfoundland in Canada, the best-known half-hour offset in the Americas.
- UTC+10:30: Lord Howe Island, whose daylight saving shift is only thirty minutes rather than a full hour.
The reasoning behind these values, and the bugs they expose, is set out in half-hour time zones.
UTC Offsets Are Not Time Zones
An offset is a number that describes one instant; a time zone is a rule that says which number applies when. Paris and Lagos both read UTC+01:00 in January, but only Paris moves to UTC+02:00 in summer, so they are not in the same zone.
This distinction explains why the count of UTC offsets and the count of zones are so different, a discrepancy taken apart in how many time zones there are. It also explains a common data-modelling mistake: storing a future appointment as an offset freezes it against a rule that may change, whereas storing a zone identifier lets the rule apply itself. To move a time between two named zones rather than two raw numbers, use the time zone converter.
How to Write UTC Offsets Correctly
ISO 8601 is the standard to follow when writing UTC offsets: a sign, two digits of hours, a colon and two digits of minutes, as in +05:30 or −03:00. A zero offset is written as +00:00 or abbreviated to the letter Z, spoken as Zulu.
- Always include the sign: an unsigned offset is ambiguous, and east of Greenwich is positive.
- Use minutes, not decimals: India is +05:30, never +5.5, which invites arithmetic errors.
- Pad to two digits: +02:00 rather than +2:00 keeps fields aligned and parsers happy.
- Beware inverted signs: the POSIX convention, still visible in identifiers such as Etc/GMT+5, reverses the sense and means five hours behind UTC.
Conclusion
UTC offsets are the vocabulary of world time: a signed distance from Coordinated Universal Time, running from UTC−12:00 in the empty mid-Pacific to UTC+14:00 in Kiribati, with half-hour and quarter-hour values scattered between. Remember that the range is wider than a day, that an offset describes a moment rather than a place, and that ISO 8601 formatting removes most of the ambiguity. Look up any value in the UTC offsets table, or start from the timezones.now homepage.