Days Between End of WWII and today

Time elapsed since V-J Day. Computed below across multiple units; if either date is "today", the page reflects the build date.

September 2, 1945 → today

29,465 days

In Other Units

Total seconds2,545,776,000
Total hours707,160
Total days29,465
Total weeks4209.3
Total months (calendar)968
Total years (calendar)80

How to Calculate This in Code

JavaScript (with day.js)

dayjs('2026-05-05').diff(dayjs('1945-09-02'), 'day')
// 29465

Python

from datetime import date
(date(2026, 5, 5) - date(1945, 9, 2)).days
# 29465

Bash (GNU date)

echo $(( ($(date -d '2026-05-05' +%s) - $(date -d '1945-09-02' +%s)) / 86400 ))
# 29465
Need the full converter? Open the Timestamp Converter →