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,326 days

In Other Units

Total seconds1,151,366,400
Total hours319,824
Total days13,326
Total weeks1903.7
Total months (calendar)437
Total years (calendar)36

How to Calculate This in Code

JavaScript (with day.js)

dayjs('2026-05-05').diff(dayjs('1989-11-09'), 'day')
// 13326

Python

from datetime import date
(date(2026, 5, 5) - date(1989, 11, 9)).days
# 13326

Bash (GNU date)

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