An index of the world's time zones

Every time zone,
by UTC offset.

Browse 174 named time zones grouped by UTC offset. Each card carries its own live clock, whether it observes daylight saving, and the countries that keep it.

The world right now ☀ Daylight
UTC time
--:--
Your local
--:--
Named zones
174
Distinct offsets
37

Named zones

174

each with its own abbreviation

Observe DST

39

of 174 · 22%

Non-hour offsets

12

half- and quarter-hour zones

In daylight now

0

of 174 · the lit half of Earth

About time zones

One Earth,
fifty-something clocks.

A time zone is a region of the Earth where the same standard time applies. In theory the Earth would be divided into 24 hour-wide zones — one for each hour the planet rotates — and that is roughly what the world looks like today. In practice, political and geographic accidents push the real count higher: countries straddle natural boundaries, islands prefer their own clock, and a handful of regions use half- or quarter-hour offsets.

The IANA Time Zone Database (also called tzdata) is the authoritative catalog. It currently lists about 350 named zones, each with a stable identifier like Europe/Paris or America/New_York, plus the full history of every offset and DST change ever observed in that region. Storing an IANA identifier — never a fixed offset or abbreviation — is the only safe way to keep timestamps in software.

Common abbreviations like CET, EST, or AEST are convenient for humans but ambiguous: IST can mean Indian, Israel, or Irish Standard Time depending on context; CST refers to Central, China, or Cuba Standard Time. The list below uses the abbreviation most commonly associated with each zone in English-language software and press.

About a third of the world's zones still observe daylight saving time, moving clocks forward an hour in spring and back in autumn. The list of countries that observe DST has been shrinking — Russia, Iceland, Turkey, and most of South America have dropped it in the last twenty years — and the European Union has been debating doing the same since 2019. None of the equatorial countries observe DST, since day length barely changes through the year that close to the equator.

All zones · grouped by UTC offset

West to east, around the world.

174 zones · 37 distinct offsets

Frequently asked questions

Common questions about how time zones work, why they look the way they do, and how to use them correctly in software. Can't find what you need? Email [email protected].

How many time zones are there in the world?
About 38 distinct UTC offsets are in use, but the IANA database lists roughly 350 named zones to capture every variation in history and DST rules. This page lists the most commonly referenced ones, grouped by offset.
What's the difference between UTC and GMT?
UTC (Coordinated Universal Time) is the modern atomic-clock reference standard. GMT (Greenwich Mean Time) is the historical, astronomy-based time at the Greenwich meridian. In practice they are almost always within a second of each other, and most software treats them as equivalent — but UTC is the value to use.
Why do some zones have half-hour or quarter-hour offsets?
Local geography. India sits roughly midway between hour-aligned offsets and chose to compromise at UTC+05:30. Nepal went a step further at UTC+05:45 to stay distinct from India. The Chatham Islands use UTC+12:45 for the same reason, and Australia has both UTC+09:30 (Adelaide) and UTC+08:45 (Eucla).
Why are some abbreviations like 'IST' or 'CST' used for multiple zones?
The abbreviations are conventions, not unique identifiers. IST refers to Indian, Israel, and Irish Standard Time; CST means Central (US), China, or Cuba Standard Time depending on context. This is why software should always store the full IANA zone name.
Which time zones don't observe daylight saving time?
Equatorial regions, most of Asia, all of Africa, and most of South America. In Europe, Iceland and Russia don't change clocks. In North America, Arizona (except the Navajo Nation), Hawaii, and Saskatchewan stay on standard time year-round. Among DST observers, the start and end dates vary by country.
What is the IANA time zone database?
A collaborative public catalog of every named time zone on Earth, with the full history of offset and DST changes for each. It's maintained by IANA (Internet Assigned Numbers Authority) and updated several times a year as governments change their clock rules. Every modern operating system, language, and database derives its time-zone behaviour from it.
What is 'Anywhere on Earth' time?
AoE (UTC−12:00) is a calendar convenience: as long as it's still a given date somewhere on Earth, AoE considers the date current. It's used in academic deadlines so that nobody anywhere in the world has missed the cutoff.
Are time zones a fixed feature of the Earth?
No. Time zones are political constructs, and governments change them. North Korea reverted its standard time by 30 minutes in 2015, then reversed the change in 2018. Russia consolidated and re-split its zones in 2011 and 2014. Samoa skipped December 30, 2011 entirely to jump from the Americas-side to the Asia-side of the Date Line.

Free · Developer API

Time, as JSON.

Every IANA time zone with live offsets, DST status, and the countries and cities that use them — clean, dependable JSON. Sign up free and get an API key in seconds.

GET /v1/timezones Live

countries, cities, convert, DST transitions coming next.

Get your free API key →
// France's time zones, right now
GET /v1/timezones?country=fr
{
"data": [
{
"iana": "Europe/Paris",
"display_name": "Paris",
"current": {
"utc_offset": "+02:00",
"abbreviation": "CEST",
"is_dst": true
}
}
]
}