induwara.lk
induwara.lkTime · Utility

World Clock — live time across cities

Pin up to 20cities and watch their clocks tick side by side. Daylight-saving and historical offsets come from the IANA Time Zone Database via the browser's Intl API — no signup, no ads, no network calls after the page loads.

By Induwara AshinsanaUpdated May 11, 2026
Live clocks across the world
IANA tzdata · DST-aware
4 / 20 cities pinned
ColomboRef
Sri Lanka
--:--
London
United Kingdom
--:--
New York
USA (Eastern)
--:--
Tokyo
Japan
--:--

Pick from the curated catalogue, or type any IANA zone id (e.g.Asia/Riyadh).

Saved cities persist locally on this device (up to 20).

How it works

A world clock has two moving parts: a single source of truth for the current UTC instant, and a way to translate that instant into the local wall clock of each pinned city. This tool keeps both parts in the browser.

The UTC instant is your device's clock, read once per second via Date.now(). If your system clock is correct (most are, since the OS syncs to NTP), every tile sees the same instant and the offsets line up to the second.

The wall-clock translation uses the ECMAScript Internationalization API. Calling new Intl.DateTimeFormat("en-US", { timeZone: "Asia/Tokyo" }).formatToParts(date) returns the wall-clock components — year, month, day, hour, minute, second, weekday — for that UTC instant in Tokyo's local time. The browser ships the full IANA Time Zone Database, so the runtime knows every zone's historical offsets and every daylight-saving rule without us shipping extra data.

Daylight saving is handled automatically. London tiles read 14:30 BST in July and 14:30 GMT in December because the IANA dataset encodes the transition rule; we never compute it by hand. Zones without DST (like Asia/Colombo at UTC+5:30, Asia/Kolkata at UTC+5:30, or Asia/Tokyo at UTC+9) sit on the same offset year-round and the tile reflects that.

Each tile also shows the offset, both as a numeric stamp (e.g. UTC+05:30) and as a short abbreviation (e.g. IST). To catch the rare case where a browser's tz tables ship in a broken state, the offset is derived twice in independent code paths — once by decomposing the wall clock and once by parsing the runtime's longOffset token. When the two agree, the tile carries a small verified chip; when they disagree, the chip disappears so you know the runtime is misbehaving and not the page.

Pinned cities live in localStorage under a versioned key. The first pinned city is treated as the reference, and every other tile shows a +1 day / -1 day chip when its calendar date differs — useful for catching the trap where 22:00 Colombo on Friday is already Saturday morning in Auckland.

Worked examples

A UTC instant, six cities

UTC 14:00:00 on 2026-05-11

ZoneWall clockDateNote
Asia/Colombo19:30:00Mon, 11 MayUTC+05:30 · same day
Europe/London15:00:00Mon, 11 MayUTC+01:00 (BST) · same day
America/New_York10:00:00Mon, 11 MayUTC-04:00 (EDT) · same day
Asia/Tokyo23:00:00Mon, 11 MayUTC+09:00 · same day
Australia/Sydney00:00:00Tue, 12 MayUTC+10:00 · +1 day
Pacific/Honolulu04:00:00Mon, 11 MayUTC-10:00 · same day

DST in action

UTC 14:00:00 on 2026-01-15 vs 2026-07-15

ZoneWall clockDateNote
Europe/London — January14:00:00Thu, 15 JanUTC+00:00 (GMT)
Europe/London — July15:00:00Wed, 15 JulUTC+01:00 (BST)
America/New_York — January09:00:00Thu, 15 JanUTC-05:00 (EST)
America/New_York — July10:00:00Wed, 15 JulUTC-04:00 (EDT)
Asia/Tokyo — January23:00:00Thu, 15 JanUTC+09:00 (no DST)
Asia/Tokyo — July23:00:00Wed, 15 JulUTC+09:00 (no DST)

Edge case — international date line

UTC 11:00:00 on 2026-05-11

ZoneWall clockDateNote
Asia/Colombo16:30:00Mon, 11 MayUTC+05:30 · same day
Pacific/Auckland23:00:00Mon, 11 MayUTC+12:00 · same day
Pacific/Apia00:00:00Tue, 12 MayUTC+13:00 · +1 day
Pacific/Honolulu01:00:00Mon, 11 MayUTC-10:00 · same day
Pacific/Tahiti01:00:00Mon, 11 MayUTC-10:00 · same day
Pacific/Fiji23:00:00Mon, 11 MayUTC+12:00 · same day

Frequently asked questions

Sources & references

Default cities (Asia/Colombo, Europe/London, America/New_York, Asia/Tokyo) and all helpers were last cross-checked against the runtime's IANA tables on 2026-05-11. The tz database is maintained continuously by IANA; updates reach users via browser releases.

Related tools

Rate this tool
Be the first to rate

Comments & feedback

Spotted a bug or want an improvement? Tell us — our team reviews every comment, and good ideas get built. Comments are public and anonymous.

Spot a city missing, a wrong offset, or a DST glitch?

Email me at [email protected] — most fixes ship within 24 hours.