Instant · Precise · Universal
28 units available
6 categories total
To convert hours to minutes: multiply by 60. To convert hours to seconds: multiply by 3,600.
1 h = 60 min = 3,600 s = 3.6 × 10⁶ ms. There are 24 hours in a day and 8,760 in a non-leap year.
For example, 1 Hour (h) = 0.0001138433515 Year (Leap) (yr (Leap)).
| Hour (h) | Year (Leap) (yr (Leap)) |
|---|---|
| 0.1 | 0.00001138433515 |
| 0.5 | 0.00005692167577 |
| 1 | 0.0001138433515 |
| 2 | 0.0002276867031 |
| 5 | 0.0005692167577 |
| 10 | 0.001138433515 |
| 25 | 0.002846083789 |
| 50 | 0.005692167577 |
| 100 | 0.01138433515 |
| 500 | 0.05692167577 |
| 1000 | 0.1138433515 |
The hour is a unit of time equal to 60 minutes, or 3,600 seconds.
1 h = 60 min = 3,600 s = 3.6 × 10⁶ ms. There are 24 hours in a day and 8,760 in a non-leap year.
To convert hours to minutes: multiply by 60. To convert hours to seconds: multiply by 3,600.
Work schedules, flight durations, speed limits (km/h, mph), cooking times, and pay rates (hourly wages).
Before mechanical clocks, 'hours' varied by season — a summer daytime hour was longer than a winter one. These were called 'temporal hours.'
Converting decimal hours to minutes/seconds incorrectly: 2.5 h = 2 h 30 min, not 2 h 50 min. Think base-60.
The kilowatt-hour (kWh) on your electric bill is energy = power × time. 1 kWh = using 1,000 watts for 1 hour.
A leap year is a calendar year containing 366 days (31,622,400 seconds), with an extra day added as February 29th to correct calendar drift.
1 leap year = 366 d = 8,784 h = 527,040 min = 31,622,400 s. That's 86,400 s more than a common year.
To convert leap years to days: multiply by 366. To seconds: multiply by 31,622,400.
Calendar systems, date arithmetic in software (handling Feb 29), birthday celebrations for 'leaplings,' and financial calculations.
People born on February 29 are called 'leaplings' — they technically have a birthday only once every 4 years. The odds of being born on Feb 29 are about 1 in 1,461.
The most common bug: not handling Feb 29. Many software failures have occurred on leap day. Also, the 100/400 rule is often forgotten.
Leap year test: divisible by 4? Yes → leap year, UNLESS divisible by 100, UNLESS also divisible by 400. Code it: (y%4==0 && y%100!=0) || y%400==0.



© 2026 UntangleTools. All Rights Reserved.