20 Years Ago

What date is 20 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)

Thursday, April 27, 2006

Unix timestamp: 1146096000 · ISO 8601: 2006-04-27T00:00:00Z

Worked Examples From Reference Dates

Start Date20 years beforeUnix Timestamp
January 1, 2024Thursday, January 1, 20041072915200
July 4, 2024Sunday, July 4, 20041088899200
January 1, 2025Saturday, January 1, 20051104537600
June 15, 2025Wednesday, June 15, 20051118793600
January 1, 2026Sunday, January 1, 20061136073600

How to Calculate This Yourself

JavaScript (with day.js)

dayjs().subtract(20, '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=20)

Bash (GNU date)

date -d "-20 years" +"%Y-%m-%d"
Need the full converter? Open the Timestamp Converter →