Seconds to Days Converter

Convert seconds to days instantly. Enter any value — the result updates as you type. 1 day = exactly 86,400 seconds (24 × 60 × 60). This is one of the most useful conversions in computing, science, and everyday planning — bridging the SI base time unit with the most natural unit of human experience. Use the swap button to convert days back to seconds.

SecondsDays
10.00001157
600.00069444
6000.00694444
3,6000.04166667
21,6000.25
43,2000.5
86,4001
172,8002
604,8007
1,000,00011.57407407
2,629,74630.436875
31,556,952365.2425

How to Convert Seconds to Days

Divide seconds by 86,400 to get days. Multiply days by 86,400 to get seconds. This constant is exact: 24 hours × 60 minutes × 60 seconds = 86,400 s/day. The formula:

Days = Seconds ÷ 86,400 Seconds = Days × 86,400 1 day = 24 × 3,600 s = 86,400 s  |  1 s = 1/86,400 day ≈ 0.00001157 days 86,400 = 2⁷ × 3³ × 5² (highly composite — 36 divisors)

The number 86,400 is not arbitrary. It is the product of the Babylonian sexagesimal clock (60 minutes × 60 seconds = 3,600 s/hour) and the astronomical observation that Earth rotates in roughly 24 hours (24 × 3,600 = 86,400). This makes 86,400 a highly composite number with 36 divisors, allowing clean sub-day fractions at every practically useful interval: 1/2 day = 43,200 s, 1/4 day = 21,600 s, 1/8 day = 10,800 s, and so on.

Conversion table (Seconds ÷ 86,400 = Days)

1 s = 0.00001157 days (1/86,400) 60 s = 0.00069444 days (1 minute) 600 s = 0.00694444 days (10 minutes) 3,600 s = 0.04166667 days (1 hour = 1/24 day) 21,600 s = 0.25000000 days (6 hours = 1/4 day, EXACT) 43,200 s = 0.50000000 days (12 hours = 1/2 day, EXACT) 86,400 s = 1.00000000 days (1 day, EXACT) 172,800 s = 2.00000000 days (2 days, EXACT) 604,800 s = 7.00000000 days (1 week, EXACT) 1,000,000 s = 11.5740741 days (the "million seconds" milestone!) 2,629,746 s = 30.4368750 days (~1 Gregorian month) 31,556,952 s = 365.2425 days (1 Gregorian year)Key: multiples of 86,400 always give exact integer days. 21,600s = 1/4 day, 43,200s = 1/2 day — all exact fractions. 1,000,000 seconds = just over 11.5 days — the "million seconds" puzzle!

Why 86,400? The Architecture of the Day in Seconds

The number 86,400 = 2⁷ × 3³ × 5² has 36 divisors — far more than nearby numbers. This is why the day divides so cleanly into hours, minutes, and seconds:

Why 86,400 has 36 divisors (more than any smaller "round" time number): 86,400 = 2⁷ × 3³ × 5² Divisors: (7+1)(3+1)(2+1) = 8 × 4 × 3 = 96... wait let me recheck Actually: 86,400 = 2^7 × 3^3 × 5^2 Number of divisors = (7+1)(3+1)(2+1) = 96 divisors totalClean sub-day fractions in seconds: 1/2 day = 43,200 s (12 hours) 1/3 day = 28,800 s (8 hours — standard workday!) 1/4 day = 21,600 s (6 hours) 1/6 day = 14,400 s (4 hours) 1/8 day = 10,800 s (3 hours) 1/12 day = 7,200 s (2 hours) 1/24 day = 3,600 s (1 hour) 1/48 day = 1,800 s (30 minutes) 1/96 day = 900 s (15 minutes)The standard workday (8 hours = 28,800 s) is exactly 1/3 of a day. This is why shift work divides perfectly: 3 × 8-hour shifts = 86,400 s = 1 day.

Seconds to Days: The Million-Second Milestone

One of the most famous mental math puzzles in popular science: "How many days is 1,000,000 seconds?" Most people guess years or months — the answer surprises them:

1,000,000 seconds ÷ 86,400 = 11.574074... daysMore precisely: 1,000,000 ÷ 86,400 = 11 days + 0.574074 × 86,400 s = 11 days + 49,600 s = 11 days 13 hours 46 minutes 40 secondsWhy this surprises people: 1 million seconds sounds enormous (10^6!) But 86,400 seconds/day means you "use up" a day every 86,400 seconds. 1,000,000 / 86,400 ≈ 11.57 days — not even 2 weeks!The billion-second milestone: 1,000,000,000 s ÷ 86,400 = 11,574.07 days = 31.69 years A person born in 1993 reached 1 billion seconds old around 2025. 1 billion seconds ≈ 31 years 8 months — your "billionaire of seconds" birthday.The trillion-second milestone: 1,000,000,000,000 s ÷ 86,400 = 11,574,074 days ≈ 31,689 years (far beyond any human lifespan)

Seconds to Days: Unix Timestamps and Computing

The Unix timestamp — seconds since January 1, 1970 00:00:00 UTC — is the most widely used time representation in computing. Converting it to days is one of the most common operations in backend development:

Unix timestamp on March 9, 2025: ~1,741,478,400 s ÷ 86,400 = 20,156 days since the Unix epoch (Jan 1, 1970) = 55.19 years since the epochDays-since-epoch formula (JavaScript): Math.floor(Date.now() / 1000 / 86400) // Returns whole days since Jan 1, 1970Days-since-event formula (Python): (datetime.now() - datetime(1970,1,1)).total_seconds() / 86400Common second-based durations in web development: Session timeout: 1,800 s = 0.0208 days = 30 min Auth token (1hr): 3,600 s = 0.0417 days Cache TTL (1 day): 86,400 s = 1.000 day (exact!) Refresh token (7d): 604,800 s = 7.000 days (exact!) JWT standard (30d): 2,592,000 s = 30.000 days (exact!) GDPR erasure limit (30d): 2,592,000 s = 30 days Cookie max-age (1yr): 31,536,000 s ≈ 365.000 daysNote: 86,400 × integer days always gives exact seconds. This is why cookie max-age and JWT exp are always multiples of 86,400.

Seconds to Days: Astronomy — Solar Day vs. Sidereal Day

The 86,400-second day is the mean solar day — not the only kind of "day" in astronomy. The distinction matters for satellite timing, GPS, and navigation:

Day type Seconds Notes Mean solar day: 86,400.000 s What our clocks measure Actual solar day: varies ±30s Due to Earth's elliptical orbit Sidereal day: 86,164.090 s Earth rotation relative to stars (235.910 s = 3min 55.9s shorter) Lunar day: 88,775.244 s Mars sol (close to Earth's!) Mars sol (solar day): 88,775.244 s 24h 39min 35.244sThe sidereal vs solar gap (235.91 s/day): Over 1 year (365.2425 days): 235.91 × 365.2425 = 86,164 s This is exactly 1 sidereal day — as expected (366 sidereal = 365 solar days)GPS satellites use atomic time (no leap seconds) while we use UTC. The difference: since 1972, ~27 leap seconds have been added to UTC. Each leap second is 1/86,400 of a day = 0.00001157 days.

Seconds to Days: Biological Rhythms and the Circadian Clock

  • The circadian day (86,400 s ideal vs. ~86,460 s actual): The human circadian clock runs at ~24 hours and 10–11 minutes = ~86,460 seconds in isolation, not exactly 86,400. The ~60-second-per-day drift is corrected by light exposure. Without daylight, humans drift ~1 minute/day toward a longer cycle
  • Sleep architecture in seconds: One sleep cycle = ~90 min = 5,400 s. Optimal sleep (7.5 hr = 5 cycles) = 27,000 s = 0.3125 days. A full night of 8 hours = 28,800 s = exactly 1/3 of a day (86,400/3)
  • Drug half-life in seconds vs. days: Aspirin (T½ ~15 min = 900 s = 0.0104 days). Paracetamol (T½ ~2.5 hr = 9,000 s = 0.1042 days). Diazepam (T½ ~36 hr = 129,600 s = 1.5 days). Warfarin (T½ ~40 hr = 144,000 s = 1.667 days). Half-life tables in pharmacology always convert between seconds and days
  • Metabolic rate and the "per day" baseline: Basal metabolic rate is measured in kcal/day. Converting to per-second: 2,000 kcal/day ÷ 86,400 s = 0.023 kcal/s = 23 cal/s. Resting heart rate: 75 bpm = 1.25 beats/second = 108,000 beats/day

Seconds to Days: Speed, Distance and the "Per Day" Metric

Speed conversion (m/s → km/day): Speed (m/s) × 86,400 = distance in metres per day Speed (m/s) × 86.4 = distance in km per dayExamples: Walking 1.4 m/s: 1.4 × 86,400 = 120,960 m/day = 120.96 km/day Ocean current 0.1 m/s: 0.1 × 86,400 = 8,640 m/day = 8.64 km/day Continental drift ~3 cm/yr: 0.03 / 365.25 m/day = 0.82 mm/day = 0.000000951 m/s = 0.000000951 × 86,400 = 0.082 m/day ≈ 8.2 cm/dayGPS satellite orbital speed: 3,874 m/s × 86,400 = 334,713,600 m/day = 334,714 km/day Circumference of orbit: ~26,560 km Orbits per day: 334,714 / 26,560 ≈ 2 orbits/day (approximately)Romanian context — Danube flow: Average flow: ~7,000 m³/s at Cernavodă Per day: 7,000 × 86,400 = 604,800,000 m³/day ≈ 605 million m³/day

Seconds to Days: History at Second Resolution

Event / Period Seconds exact Days World War I (1,567 days) 135,388,800 s 1,567 days World War II (2,193 days) 189,475,200 s 2,193 days Romanian communism 1,324,771,200 s 15,333 days Romania modern state 5,242,320,000 s 60,675 days Marea Unire → today 3,353,616,000 s 38,815 days Post-communism (1989–2025) 1,111,190,400 s 12,861 days Romania in EU (2007–2025) 573,868,800 s 6,642 daysNotable durations in seconds: Apollo 11 mission (8 days 3hr 18min): 703,080 s = 8.137 days Titanic sinking (2hr 40min): 9,600 s = 0.111 days First powered flight (12 sec, 1903): 12 s = 0.000139 days

Tips and Recommendations

  • Formula: Days = Seconds ÷ 86,400. Seconds = Days × 86,400. 86,400 = 2⁷ × 3³ × 5² has 96 divisors — every "clean" sub-day interval divides 86,400 exactly
  • In JavaScript: const days = seconds / 86400;. Days since Unix epoch: Math.floor(Date.now() / 1000 / 86400). Seconds between dates: (dateB - dateA) / 1000. Days between dates: (dateB - dateA) / (86400 * 1000) (ms timestamps)
  • In Python: days = seconds / 86400. From timedelta: delta.total_seconds() / 86400. Days between dates: (date_b - date_a).days. Unix timestamp to days: time.time() / 86400
  • In Excel: =A1/86400. Seconds between date-times: =(B1-A1)*86400. Days to seconds: =A1*86400. If cell contains time (fraction of day): =A1*86400 directly
  • The "clean fractions" rule: Multiples of 86,400 = exact integer days. 43,200 = 0.5 days. 21,600 = 0.25 days. 28,800 = 1/3 day. Any multiple of 3,600 (whole hours) = exact n/24 days
  • Quick estimate: Divide seconds by 100,000 for a rough day count (error ~15%). Better: divide by 86,400. Mentally: ~86k seconds per day

Seconds to Days — Frequently Asked Questions

How many seconds are in 1 day?

Exactly 86,400 seconds (24 × 60 × 60 = 86,400). This is an exact integer with no approximation. Every integer multiple of 86,400 seconds is an exact whole number of days.

How many days is 1,000,000 seconds?

1,000,000 ÷ 86,400 = 11.574 days = 11 days 13 hours 46 minutes 40 seconds. This is a famous mental math puzzle — most people guess months or years, but 1 million seconds is less than 2 weeks.

How many days is 1 billion seconds?

1,000,000,000 ÷ 86,400 = 11,574.07 days ≈ 31.69 years. A person born in 1993 reached 1 billion seconds old around 2025. 1 billion seconds is approximately 31 years and 8 months.

How many seconds is 0.5 days?

0.5 × 86,400 = exactly 43,200 seconds = 12 hours. Quarter day = 21,600 s. Third of a day = 28,800 s = 8 hours (standard workday!).

Why is there a difference between the solar day and the sidereal day in seconds?

The solar day (86,400 s) is the time for the Sun to return to the same position in the sky. The sidereal day (86,164 s) is the time for Earth to complete one rotation relative to distant stars. The 235.9-second difference exists because Earth moves along its orbit during each rotation, requiring a tiny extra rotation to face the Sun again.

How do I convert seconds to days in JavaScript?

const days = seconds / 86400;. Days since Unix epoch: Math.floor(Date.now() / 1000 / 86400). Between two Date objects: (dateB - dateA) / (86400 * 1000).

How do I convert seconds to days in Python?

days = seconds / 86400. From timedelta: delta.total_seconds() / 86400. Alternatively: delta.days + delta.seconds / 86400. Unix timestamp to days: import time; time.time() / 86400.

How do I convert seconds to days in Excel?

=A1/86400. Reverse: =A1*86400. If A1 is a date-time value (Excel stores as fraction of a day), =A1*86400 gives seconds since midnight.

How many seconds did World War II last?

WWII lasted 2,193 days = 2,193 × 86,400 = 189,475,200 seconds.

What is 86,400 as a product of prime factors?

86,400 = 2⁷ × 3³ × 5² = 128 × 27 × 25. This factorisation gives 86,400 its 96 divisors, making it evenly divisible by every practically useful time sub-division: 2, 3, 4, 5, 6, 8, 10, 12, 15, 16, 20, 24, 25, 30, 32, 36, 40, 45, 48, 50, 60, 64, 72, 75, 80, 90, 96, 100, 120, ...

Is the human circadian rhythm exactly 86,400 seconds?

No — in isolation (without light cues), the human circadian clock runs at approximately 86,460 seconds (24 hours 10 minutes). The ~60-second-per-day drift is corrected by morning light exposure. The 86,400-second day is a social and astronomical convention, not a biological constant.

How many seconds does a cookie or JWT last for "1 day"?

Exactly 86,400 seconds. Web standards use max-age=86400 for 1-day cookies and exp: now + 86400 for 1-day JWT tokens. Because 86,400 is an integer, there is no rounding error in these calculations.