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)) = 366 Day (d).
| Year (Leap) (yr (Leap)) | Day (d) |
|---|---|
| 0.1 | 36.6 |
| 0.5 | 183 |
| 1 | 366 |
| 2 | 732 |
| 5 | 1830 |
| 10 | 3660 |
| 25 | 9150 |
| 50 | 18300 |
| 100 | 36600 |
| 500 | 183000 |
| 1000 | 366000 |
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 day is a unit of time equal to 24 hours, or 86,400 seconds, representing one full rotation of the Earth on its axis.
1 d = 24 h = 1,440 min = 86,400 s. A mean solar day is ~86,400.002 s due to Earth's slowing rotation.
To convert days to hours: multiply by 24. To convert days to seconds: multiply by 86,400.
Calendar systems, hospital stays, travel itineraries, project deadlines, and food expiration dates.
Earth's day was only about 6 hours long 4.5 billion years ago. It's gradually getting longer — days grow about 2.3 ms per century.
Assuming all days are exactly 86,400 s — some days have leap seconds (86,401 s). Also, confusing calendar days with 24-hour periods.
A solar day (noon to noon) differs slightly from a sidereal day (star to star) by about 4 minutes, due to Earth's orbital motion.



© 2026 UntangleTools. All Rights Reserved.