Current Time
What time is it right now? See the exact current time.
Time in Major Cities
Related Time Tools
Frequently Asked Questions
How Computers Keep Time: The Technology Behind the Clock
The live clock displayed above isn't simply counting—it relies on a sophisticated chain of timekeeping technologies that stretch from orbiting satellites and underground laboratories to the quartz crystal inside your device. Understanding how computers keep time reveals one of the most quietly impressive achievements of modern technology.
Atomic Clocks: The Foundation of Modern Timekeeping
At the base of the world's timekeeping infrastructure are atomic clocks. These devices measure the natural oscillation frequency of atoms—most commonly cesium-133—to define the second with extraordinary precision. The current definition of one second is exactly 9,192,631,770 oscillations of the cesium-133 atom's ground-state transition.
The best cesium atomic clocks drift by less than 1 second in 300 million years. Newer optical lattice clocks, which use strontium or ytterbium atoms vibrating at optical frequencies, achieve accuracy to within 1 second in 15 billion years—longer than the current age of the universe.
National laboratories around the world maintain primary atomic clocks: NIST (National Institute of Standards and Technology) in the United States, NPL (National Physical Laboratory) in the United Kingdom, PTB (Physikalisch-Technische Bundesanstalt) in Germany, and others. These laboratories collectively define Coordinated Universal Time (UTC).
Network Time Protocol (NTP): Synchronizing the World
Your computer, smartphone, and tablet don't contain atomic clocks. Instead, they use Network Time Protocol (NTP) to synchronize with time servers that are connected to atomic clock references. NTP, designed by David L. Mills at the University of Delaware in 1985, is one of the oldest internet protocols still in active use.
1. Your device sends a timestamp to an NTP server.
2. The server records when it received the request and when it sends the reply.
3. Your device records when it receives the reply.
4. Using these four timestamps, your device calculates the network delay and the offset between its clock and the server's clock.
5. Your device adjusts its clock accordingly.
This process happens automatically, typically every few minutes to hours, keeping your device within a few milliseconds of true UTC.
Time Zones Explained
Before the 19th century, every city kept its own local solar time—noon was simply when the sun was highest. This worked fine when the fastest mode of travel was horseback, but the advent of railroads created chaos: a train passing through dozens of cities encountered dozens of different local times.
In 1884, the International Meridian Conference in Washington, D.C. established the system of 24 time zones, each roughly 15 degrees of longitude wide, centered on the Prime Meridian at Greenwich, England. Today, actual time zone boundaries follow political and geographical lines rather than strict longitude, resulting in some zones with unusual offsets like UTC+5:30 (India) or UTC+5:45 (Nepal).
Major Time Zones Reference
| Time Zone | Abbreviation | UTC Offset | Major Cities |
|---|---|---|---|
| Eastern Standard Time | EST | UTC−5 | New York, Toronto, Miami |
| Central Standard Time | CST | UTC−6 | Chicago, Houston, Mexico City |
| Mountain Standard Time | MST | UTC−7 | Denver, Phoenix, Calgary |
| Pacific Standard Time | PST | UTC−8 | Los Angeles, Seattle, Vancouver |
| Greenwich Mean Time | GMT | UTC±0 | London, Dublin, Lisbon |
| Central European Time | CET | UTC+1 | Paris, Berlin, Rome |
| India Standard Time | IST | UTC+5:30 | Mumbai, Delhi, Bangalore |
| China Standard Time | CST | UTC+8 | Beijing, Shanghai, Hong Kong |
| Japan Standard Time | JST | UTC+9 | Tokyo, Osaka, Seoul |
| Australian Eastern Standard Time | AEST | UTC+10 | Sydney, Melbourne, Brisbane |
UTC and GMT: What's the Difference?
These two terms are often used interchangeably, but they have different origins and definitions:
GMT (Greenwich Mean Time) was the world's time standard from 1884 until 1972. It was defined by the mean solar time at the Royal Observatory in Greenwich, London. Because Earth's rotation is not perfectly constant, GMT drifts slightly over time.
UTC (Coordinated Universal Time) replaced GMT as the world standard in 1972. UTC is based on atomic clocks rather than astronomical observation, making it far more precise. To keep UTC aligned with Earth's rotation, "leap seconds" are occasionally added. For everyday purposes, GMT and UTC are identical—the difference only matters at sub-second precision levels.
Daylight Saving Time (DST)
Daylight Saving Time shifts clocks forward by one hour in spring ("spring forward") and back by one hour in autumn ("fall back"). First widely adopted during World War I to conserve energy, DST remains one of the most debated timekeeping practices in the world.
When DST transitions occur, this clock adjusts automatically because it reads your device's system time, which your operating system updates based on your configured time zone rules.
How Your Browser Determines Local Time
The clock on this page doesn't require you to enter your location. Here's how it knows your local time:
- Your operating system maintains a system clock, typically synchronized via NTP.
- Your OS stores your configured time zone (set manually or detected automatically via location services).
- When JavaScript calls
new Date(), the browser returns the system time adjusted for the configured time zone. - The
Intl.DateTimeFormat().resolvedOptions().timeZoneAPI tells us which IANA time zone your system is set to (e.g., "America/New_York").
This entire process happens locally on your device—no location data is sent to our servers.