UTC Time

Live Coordinated Universal Time beside your local clock, with the offset drawn so the gap is obvious.

Live UTC and local time instrument

COORD. UNIVERSAL
00:00:00
----/--/--Z
LOCAL
00:00:00
Detecting zone…
UTC+00:00

Δ +00:00 · syncing

Unix
-
ISO 8601
-
Day of year
-

UTC vs GMT (they are not twins)

People still type GMT when they mean the scientific reference. The names overlap in casual speech. The definitions do not.

UTC is the civil time scale kept by laboratories using atomic clocks, with rare leap-second fixes so clocks stay near Earth rotation. GMT started as mean solar time at Greenwich. The UK still uses the GMT label in winter for the UTC+00:00 civil zone. For logging, APIs, aviation flight plans, and almost every modern protocol, write UTC.

TopicUTCGMT
What it isTime scale (atomic, coordinated)Historical mean solar time / UK winter zone name
Daylight savingNever shifts for DSTUK switches away from the GMT label in summer (BST)
Safe stamp for softwareYes. Prefer …Z or explicit offsetRisky. Many systems treat GMT as a synonym, some do not
On this pageLeft panel + ISO / Unix chipsNot shown as a separate clock

If a vendor email says “GMT” but the payload uses a Z suffix, trust the payload. Labels lie more often than ISO strings.

Where the offset comes from

This viewer never asks a geolocation API. Your browser already knows an IANA zone name such as Asia/Karachi or America/New_York.

Each second the page reads one Date instant, formats the left panel in UTC, formats the right panel in your zone, then measures the minute gap with getTimezoneOffset(). The coral mark on the rail is that gap mapped between −12h and +14h.

DST is already baked into the browser zone rules. When New York flips from UTC−05:00 to UTC−04:00, the local panel and the rail move with the next tick. You do not flip a switch here.

Copy buttons grab the strings teams paste into tickets: readable UTC, local wall time, or a full ISO-8601 value ending in Z. Share link copies the page URL so a teammate opens the same live instrument, not a frozen screenshot.

Editor note: If two laptops disagree by one hour, check whether one still has a manual “set time zone” override or an outdated OS zone database. The page only mirrors what the device reports.

Need a conversion for a city you are not sitting in? Use the Timezone Converter. This page stays a live reference, not a full atlas.

When UTC is the wrong stamp

UTC is the right storage format for almost every backend. Showing raw UTC to every end user is a different question.

  • Customer-facing appointment UIs should convert late, in the client, into the visitor zone. Dumping 14:00Z into a retail checkout creates support tickets.
  • Leap seconds exist. Consumer browsers ignore most of them. Do not build sub-second legal proofs from a webpage clock.
  • Legacy APIs still print GMT in RFC 822 headers. Parse the offset. Do not assume British winter rules.
  • Some corporate laptops pin a fixed offset for travel. Your “local” panel follows the laptop, not the airport you landed in.

We recommend storing UTC in databases and converting at the edge of the UI. Mixing “local write, UTC read” is how duplicate night jobs appear after a DST weekend.

For epoch math, pair this view with the Unix Timestamp Converter. For “what does my wall clock say right now” with neighbors, open What Time Is Now.

Three real stamps

Copy patterns teams paste into tickets every day.

Deploy log line
2026-07-20T14:32:08Z release=web@3.4.1 status=ok

Store the deploy in UTC. Let dashboards convert for whoever is on call.

Meeting invite body
Kickoff: 2026-07-20 14:30 UTC (check your local panel above for the wall-clock time)

One UTC line beats three conflicting city times in a Slack thread.

API JSON field
"created_at": "2026-07-20T14:32:08.000Z"

Keep the Z. Silent local offsets in JSON are how duplicate rows appear after DST weekends.

UTC clock questions

Short answers about this live viewer, offsets, and accuracy limits.

Does this clock use the server or my browser?

Your browser. Every tick formats one local Date object into UTC and into your IANA zone. No time API round trip.

Why do UTC and local show different calendar dates?

Offsets push the wall clock across midnight. Someone at UTC+14 already sits on tomorrow while UTC remains on today. The delta line under the rail calls this out.

Is GMT the same as UTC on this page?

No separate GMT panel. For software stamps, use the UTC panel and the ISO chip. GMT remains a UK winter zone label, not the scientific scale.

How accurate is the second hand?

As accurate as your device clock. NTP drift of a few hundred milliseconds is common on laptops. Fine for meetings and logs. Not fine for stopwatch lab work.

Does any time data leave my device?

No. Zone detection and formatting stay in the page. Copy and share only put text on your clipboard or build a link to this URL.