Days Between two dates one decade apart

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

January 1, 2015 → January 1, 2025

3,653 days

In Other Units

Total seconds315,619,200
Total hours87,672
Total days3,653
Total weeks521.9
Total months (calendar)120
Total years (calendar)10

How to Calculate This in Code

JavaScript (with day.js)

dayjs('2025-01-01').diff(dayjs('2015-01-01'), 'day')
// 3653

Python

from datetime import date
(date(2025, 1, 1) - date(2015, 1, 1)).days
# 3653

Bash (GNU date)

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