100 Years Ago
What date is 100 years before today? The answer below was computed when this page was built; the live answer changes daily, so use the formula or the worked examples for any date you choose.
As of build time (April 27, 2026)
Tuesday, April 27, 1926
Unix timestamp: -1378512000 · ISO 8601: 1926-04-27T00:00:00Z
Worked Examples From Reference Dates
| Start Date | 100 years before | Unix Timestamp |
|---|---|---|
| January 1, 2024 | Tuesday, January 1, 1924 | -1451692800 |
| July 4, 2024 | Friday, July 4, 1924 | -1435708800 |
| January 1, 2025 | Thursday, January 1, 1925 | -1420070400 |
| June 15, 2025 | Monday, June 15, 1925 | -1405814400 |
| January 1, 2026 | Friday, January 1, 1926 | -1388534400 |
How to Calculate This Yourself
JavaScript (with day.js)
dayjs().subtract(100, 'year').format('YYYY-MM-DD')
Python
from datetime import date, timedelta # For months/years use dateutil.relativedelta: from dateutil.relativedelta import relativedelta result = date.today() - relativedelta(years=100)
Bash (GNU date)
date -d "-100 years" +"%Y-%m-%d"