Article — Time Unit Converter
Time unit converter — seconds, minutes, hours, days, years
The time unit converter converts any duration across 12 units, from nanoseconds (10⁻⁹ s) to centuries (3.156 × 10⁹ s). The SI base unit is the second, defined since 1967 by exactly 9 192 631 770 oscillations of caesium-133. All other units route through seconds — minutes are 60 s, hours 3600 s, days 86 400 s, years 31 556 952 s (tropical).
Time is the one quantity humans have measured longest and disagreed about most. Sundials, water clocks, mechanical escapements, quartz crystals, and atomic clocks have each redefined the second to a finer precision. Modern atomic clocks are accurate to about one second in 300 million years — far beyond any practical conversion need.
What is the time unit converter?
A time unit converter takes a duration in one unit and outputs the same duration in others. The seconds-based architecture is universal: every unit has one factor (its size in seconds), and conversions are just multiplication and division. Subsecond units (ms, μs, ns) are clean decimal powers of 10. Calendar units (week, month, year, decade, century) need careful definition because real calendars have leap years and 28-31 day months.
Why the second is the SI base
The second is one of seven SI base units. Its modern definition comes from the 13th General Conference on Weights and Measures (CGPM) in 1967: "The second is the duration of 9 192 631 770 periods of the radiation corresponding to the transition between the two hyperfine levels of the ground state of the caesium-133 atom." Atomic clocks based on this transition (typically caesium-fountain or hydrogen-maser) are accurate to about 10⁻¹⁶, the best-measured quantity in physics.
The metre depends on the second. Since 1983, the metre has been defined as the distance light travels in 1/299 792 458 s. So every length measurement ultimately traces back to an atomic-clock tick.
Time unit conversion factors
- 1 ns = 10⁻⁹ s (CPU clock cycles)
- 1 μs = 10⁻⁶ s (RAM access latency)
- 1 ms = 10⁻³ s (network ping)
- 1 minute = 60 s
- 1 hour = 3600 s
- 1 day = 86 400 s
- 1 week = 604 800 s
- 1 month (avg) = 2 629 746 s = 30.4375 d
- 1 year (tropical) = 31 556 952 s = 365.2425 d
- 1 century = 3 155 695 200 s
Time unit converter for calendar units
Calendar units are harder because the Gregorian calendar uses irregular month lengths and a 400-year leap cycle. The time unit converter uses smooth averages: 1 month = 365.2425/12 = 30.4375 days, 1 year = 365.2425 days (the average Gregorian year, with 97 leap years per 400 years).
1 min = 60 s 1 hr = 3600 s1 day = 86 400 s 1 week = 604 800 s1 month ≈ 30.44 d 1 year ≈ 365.2425 dTropical year, sidereal year, calendar year
Three "year" definitions appear in scientific literature. The tropical year (365.24219 d) is the time between successive vernal equinoxes — the basis of seasons and civil calendars. The sidereal year (365.25636 d) is the time Earth takes to orbit the Sun once relative to the fixed stars; about 20 minutes longer than the tropical year because of axial precession. The Julian year (exactly 365.25 d) is used in astronomy for chronology.
The Gregorian civil calendar approximates the tropical year with an average of 365.2425 d. The 0.0003-day error builds to one day every 3300 years — not perfect but close enough for practical seasonal alignment. Most time unit converters use the Gregorian-mean year because that matches what civil calendars track. The sidereal year matters for orbital mechanics and astronomy.
The leap-year rule: divisible by 4, unless divisible by 100, unless divisible by 400. So 2000 was a leap year (÷400), but 1900 was not (÷100, not ÷400). Useful for calculating exact day differences across multi-year spans.
Common time unit conversion mistakes
Mixing milliseconds and seconds is the most common bug in software. JavaScript's Date.now() returns ms (13-digit). Most languages return seconds (10-digit). A factor-of-1000 error from confusing these can be 31 700 years off — usually obvious, sometimes not.
The second-most common error is over-precise month math. Quoting "30 days = 1 month" for a 90-day contract gives 3 months, but real 90 days might span Feb 1 to May 1 (about 89 days) or Jan 1 to Apr 1 (90 days). Calendar arithmetic needs a specific date, not an average month.
The third error is sidereal vs tropical year confusion in scientific work. NASA mission planners use Julian or sidereal years; civil calendar tools use Gregorian-mean. A 20-minute-per-year discrepancy accumulates to 6 hours per decade — irrelevant for civil scheduling, critical for orbital mechanics.
Time unit conversions in computing and physics
Computer systems live in nanoseconds. A modern 4 GHz CPU completes one cycle every 0.25 ns. RAM access takes 10-100 ns. SSD reads take microseconds. Network round-trips take milliseconds. Web page loads take seconds. Each tier requires a different time unit to communicate sensibly.
Particle physics works in even shorter time scales. The shortest lifetime measured (top quark decay) is 5 × 10⁻²⁵ seconds — far below picoseconds. The Planck time, the theoretical minimum quantum of time, is 5.4 × 10⁻⁴⁴ s. Astronomy goes the other direction: the universe's age is about 13.8 billion years = 4.36 × 10¹⁷ s. A single time unit converter can span all these scales using scientific notation.
Time unit converter quick rules
Memorise four numbers: 60 (seconds in a minute, minutes in an hour), 24 (hours in a day), 7 (days in a week), and 365.25 (days in an average year). With these, you can do most conversions mentally. For sub-second units, just count zeros: ns is 10⁻⁹, μs is 10⁻⁶, ms is 10⁻³. For decade and century, multiply year by 10 or 100. The time unit converter on this page handles the precision; the memorised rules let you sanity-check the result.
For very large or very small times, scientific notation makes life easier. 1 year ≈ 3.16 × 10⁷ s. 1 century ≈ 3.16 × 10⁹ s. 1 million years ≈ 3.16 × 10¹³ s. The age of the universe is about 4.4 × 10¹⁷ s. The Planck time, the theoretical minimum quantum of time in physics, is 5.4 × 10⁻⁴⁴ s. A single time unit converter handles the full 10⁶¹ orders of magnitude using floating-point arithmetic.