Days Between Fall of the Berlin Wall and today
Time since the Berlin Wall fell. Computed below across multiple units; if either date is "today", the page reflects the build date.
November 9, 1989 → today
13,460 days
In Other Units
| Total seconds | 1,162,944,000 |
|---|---|
| Total hours | 323,040 |
| Total days | 13,460 |
| Total weeks | 1922.9 |
| Total months (calendar) | 442 |
| Total years (calendar) | 36 |
How to Calculate This in Code
JavaScript (with day.js)
dayjs('2026-09-16').diff(dayjs('1989-11-09'), 'day')
// 13460
Python
from datetime import date (date(2026, 9, 16) - date(1989, 11, 9)).days # 13460
Bash (GNU date)
echo $(( ($(date -d '2026-09-16' +%s) - $(date -d '1989-11-09' +%s)) / 86400 )) # 13460