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,318 days
In Other Units
| Total seconds | 1,150,675,200 |
|---|---|
| Total hours | 319,632 |
| Total days | 13,318 |
| Total weeks | 1902.6 |
| Total months (calendar) | 437 |
| Total years (calendar) | 36 |
How to Calculate This in Code
JavaScript (with day.js)
dayjs('2026-04-27').diff(dayjs('1989-11-09'), 'day')
// 13318
Python
from datetime import date (date(2026, 4, 27) - date(1989, 11, 9)).days # 13318
Bash (GNU date)
echo $(( ($(date -d '2026-04-27' +%s) - $(date -d '1989-11-09' +%s)) / 86400 )) # 13318