Instant · Precise · Universal
28 units available
6 categories total
To convert leap years to days: multiply by 366. To seconds: multiply by 31,622,400.
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.
For example, 1 Year (Leap) (yr (Leap)) = 8784 Hour (h).
| Year (Leap) (yr (Leap)) | Hour (h) |
|---|---|
| 0.1 | 878.4 |
| 0.5 | 4392 |
| 1 | 8784 |
| 2 | 17568 |
| 5 | 43920 |
| 10 | 87840 |
| 25 | 219600 |
| 50 | 439200 |
| 100 | 878400 |
| 500 | 4392000 |
| 1000 | 8784000 |
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.
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.



© 2026 UntangleTools. All Rights Reserved.