Days Between two dates one century apart

Reference: how many days are in one century. Computed below across multiple units; if either date is "today", the page reflects the build date.

January 1, 1925 → January 1, 2025

36,525 days

In Other Units

Total seconds3,155,760,000
Total hours876,600
Total days36,525
Total weeks5217.9
Total months (calendar)1,200
Total years (calendar)100

How to Calculate This in Code

JavaScript (with day.js)

dayjs('2025-01-01').diff(dayjs('1925-01-01'), 'day')
// 36525

Python

from datetime import date
(date(2025, 1, 1) - date(1925, 1, 1)).days
# 36525

Bash (GNU date)

echo $(( ($(date -d '2025-01-01' +%s) - $(date -d '1925-01-01' +%s)) / 86400 ))
# 36525
Need the full converter? Open the Timestamp Converter →