Time Converter
Convert between seconds, minutes, hours, days, weeks, months, years, milliseconds and more.
| Unit | Value | |
|---|---|---|
| Nanosecond (ns) | 3.600000e+12 | |
| Microsecond (µs) | 3600000000 | |
| Millisecond (ms) | 3600000 | |
| Second (s) | 3600 | |
| Minute (min) | 60 | |
| Hour (h) | 1 | |
| Day (d) | 0.04166666667 | |
| Week (wk) | 0.005952380952 | |
| Month (avg) (mo) | 0.001368953503 | |
| Year (avg) (yr) | 0.0001140794586 | |
| Decade (dec) | 0.00001140794586 | |
| Century (cen) | 0.000001140794586 |
Time Is the One Unit Everyone Uses Differently
Unlike length or weight, time has a mixed unit system that nobody chose — it evolved. The second is the SI base unit, defined with extraordinary precision using atomic clocks (9,192,631,770 cycles of caesium-133 radiation). Above it, the structure becomes decidedly non-decimal: 60 seconds make a minute, 60 minutes make an hour, 24 hours make a day. This 60-based structure dates to Babylonian astronomy. Above days, things get messier: 7-day weeks are a cultural and religious convention with no astronomical basis; months vary between 28 and 31 days; years are approximately 365.2425 days due to Earth's orbit. No conversion from seconds to months is ever exact — this tool uses the Gregorian calendar average (365.2425 days per year, 30.436875 days per month) which is accurate for most practical purposes.
Milliseconds, Microseconds, Nanoseconds: Where Computers Live
For software developers, network engineers, and performance analysts, the interesting part of the time scale is below one second. A millisecond (ms) = 0.001 seconds is the unit of human perception: reaction time is roughly 150–300ms, and a web page load time above 3,000ms (3 seconds) starts losing users. A microsecond (µs) = 0.000001 seconds is the realm of CPU operations and database query latency — a well-optimised database query executes in tens to hundreds of microseconds. A nanosecond (ns) = 10⁻⁹ seconds is where light travels about 30 centimetres — used in describing CPU clock cycles, memory access times, and network packet transmission. Modern CPUs with 3GHz clocks execute an instruction roughly every 0.33 nanoseconds. Understanding these sub-second units is essential for profiling code, benchmarking APIs, and designing real-time systems.
Project Planning: Why Hours-to-Days Conversions Actually Matter
Project managers, freelancers, and HR teams regularly need to convert between hours and working days or weeks. The complication: a "working day" is 8 hours, a "working week" is 40 hours, and a "working month" is approximately 160–176 hours depending on the organisation — none of which matches the calendar definitions this converter uses. A project estimated at 200 hours of work equals 25 working days (200 ÷ 8) or 5 working weeks — but the calendar duration will be longer due to weekends and holidays. This converter gives you the raw calendar conversion; the working-hours adjustment is a separate calculation. For context: 1 calendar year = 8,760 hours = 525,600 minutes = 31,536,000 seconds. For speed calculations that combine time with distance, the Speed Converter handles km/h, mph, and m/s.
Unix Timestamps and Epoch Time
In computing, time is often expressed as a Unix timestamp — the number of seconds elapsed since 00:00:00 UTC on 1 January 1970 (the "Unix epoch"). As of 2024, the Unix timestamp is approximately 1,700,000,000 seconds. Converting this to years: 1,700,000,000 ÷ 31,557,600 (seconds per Julian year) ≈ 53.9 years — which checks out (2024 − 1970 = 54). Unix timestamps in milliseconds are also common in JavaScript, where Date.now() returns milliseconds since epoch. The Y2K38 problem refers to 32-bit systems that store Unix timestamps running out of space on 19 January 2038 — when the value exceeds 2,147,483,647 (2³¹ − 1 seconds). Understanding time unit arithmetic is essential for date calculations, log analysis, and debugging time-related bugs in software.
Scientific Time: From Femtoseconds to Cosmic Scales
Physics operates across an astonishing time range. Femtoseconds (10⁻¹⁵ s) describe the timescale of chemical bond breaking and laser pulse durations used in ultrafast spectroscopy. Attoseconds (10⁻¹⁸ s) capture electron motion within atoms — attosecond laser pulses were recognised with the 2023 Nobel Prize in Physics. At the other end, the age of the universe is approximately 13.8 billion years = 4.35 × 10¹⁷ seconds. For data transfer rates that combine time with data quantities, the Data Storage Converter is a useful companion when working with throughput specifications like MB/s or Gbps.
Key Time Conversion Facts
- 1 minute = 60 seconds | 1 hour = 3,600 seconds
- 1 day = 86,400 seconds = 1,440 minutes = 24 hours
- 1 week = 604,800 seconds = 7 days = 168 hours
- 1 year (Gregorian avg) = 365.2425 days = 8,765.82 hours = 31,556,952 seconds
- 1 millisecond = 0.001 s | 1 microsecond = 10⁻⁶ s | 1 nanosecond = 10⁻⁹ s
✓Verified by ToollyX Team · Last updated June 2026
Frequently Asked Questions
Disclaimer: Month and year values use Gregorian calendar averages (1 year = 365.2425 days). Results for months and years are approximate — exact values depend on the specific calendar period.