World Clock

Current time in major cities worldwide — updates every second

All cities

What is UTC?

Coordinated Universal Time (UTC) is the primary time standard by which the world regulates clocks. It is the successor to Greenwich Mean Time (GMT) and does not observe Daylight Saving Time. All time zones are defined as offsets from UTC — for example, New York is UTC−5 in winter (EST) and UTC−4 in summer (EDT). UTC is measured at the 0° meridian passing through Greenwich, London.

UTC is maintained by an ensemble of over 400 atomic clocks at national standards laboratories worldwide, coordinated by the International Bureau of Weights and Measures (BIPM). These clocks are accurate to within nanoseconds per day. Occasionally a "leap second" is added to keep UTC aligned with Earth's slightly irregular rotation.

How Time Zones Work

The world is divided into 24 primary time zones, each roughly 15 degrees of longitude wide. However, political and practical considerations mean real boundaries are irregular. China spans five geographical time zones but uses a single time (CST, UTC+8) nationwide. India uses UTC+5:30 — a half-hour offset. Nepal uses UTC+5:45 — a 45-minute offset. Australia's three main zones include UTC+9:30 for the Northern Territory.

The International Date Line runs roughly along the 180° meridian in the Pacific Ocean, marking where one calendar day ends and the next begins. Countries just east of the line are a full day behind countries just west — which is why Samoa and Tonga, separated by just a few hundred kilometres, have a 25-hour time difference.

Daylight Saving Time

Daylight Saving Time (DST) advances clocks by one hour during summer to extend evening daylight. First widely adopted during World War I to conserve fuel, today its energy-saving benefits are disputed and many jurisdictions are moving to eliminate it. China, Japan, India, most of Africa, and Southeast Asia do not observe DST at all.

In North America, clocks spring forward on the second Sunday in March and fall back on the first Sunday in November. In Europe the change is the last Sunday in March and last Sunday in October — roughly three weeks later than North America. During this gap, New York to London shifts from 5 hours to 4 hours. The EU voted to end seasonal changes but implementation has been delayed by member-state disagreements.

Scheduling International Meetings

Finding a meeting time that works across multiple time zones is a daily challenge in global business. Key relationships to know:

When a meeting spans more than three zones it becomes impossible to stay within business hours for everyone. Rotate inconvenient time slots so the burden is shared fairly, or shift to asynchronous communication: recorded video updates, written summaries, and shared task boards.

Jet Lag and Circadian Rhythm

Jet lag occurs when your body's internal clock is out of sync with local time after crossing multiple time zones. It's generally worse travelling east (shortening the day) than west (lengthening it). Your circadian rhythm adjusts at roughly one time zone per day — a 10-hour shift can take nearly two weeks to fully resolve.

Evidence-based strategies to reduce jet lag: expose yourself to natural daylight at your destination immediately upon arrival, avoid alcohol and caffeine during the flight, adapt to local meal and sleep schedules right away, and consider melatonin (0.5–5 mg) at bedtime in the new time zone to accelerate adjustment.

Time Zones in Software Development

Handling time zones correctly is one of the most notorious sources of bugs in software. The golden rule: store all timestamps in UTC, and convert to local time only for display. Never store local time in a database without the UTC offset. Use IANA time zone identifiers (like "America/Toronto" or "Asia/Tokyo") rather than abbreviations like EST or JST, which are ambiguous — EST refers to both Eastern Standard Time (UTC−5) and Australian Eastern Standard Time (UTC+10).

The JavaScript Intl.DateTimeFormat API — used to power this world clock — handles IANA time zones natively in all modern browsers, making it the safest and most accurate way to display times across zones without a server round-trip.