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)) = 527040 Minute (min).
| Year (Leap) (yr (Leap)) | Minute (min) |
|---|---|
| 0.1 | 52704 |
| 0.5 | 263520 |
| 1 | 527040 |
| 2 | 1054080 |
| 5 | 2635200 |
| 10 | 5270400 |
| 25 | 13176000 |
| 50 | 26352000 |
| 100 | 52704000 |
| 500 | 263520000 |
| 1000 | 527040000 |
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 minute is a unit of time equal to 60 seconds, or 1/60 of an hour.
1 min = 60 s = 1/60 h = 60,000 ms. There are 1,440 minutes in a day and 525,960 in a year.
To convert minutes to seconds: multiply by 60. To convert minutes to hours: divide by 60.
Meeting schedules, cooking times, exercise intervals, transit timetables, and phone call durations.
The minute hand on a clock rotates 360° per hour (6° per minute). There are exactly 525,600 minutes in a non-leap year.
Using decimal hours incorrectly: 1.5 hours = 90 minutes, not 1 hour 50 minutes. The base-60 system catches people off guard.
The Babylonians gave us base-60 time. That's why we have 60 seconds per minute and 60 minutes per hour — it's not decimal!



© 2026 UntangleTools. All Rights Reserved.