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 seconds1,150,675,200
Total hours319,632
Total days13,318
Total weeks1902.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
Need the full converter? Open the Timestamp Converter →