10 Years Ago

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

Wednesday, April 27, 2016

Unix timestamp: 1461715200 · ISO 8601: 2016-04-27T00:00:00Z

Worked Examples From Reference Dates

Start Date10 years beforeUnix Timestamp
January 1, 2024Wednesday, January 1, 20141388534400
July 4, 2024Friday, July 4, 20141404432000
January 1, 2025Thursday, January 1, 20151420070400
June 15, 2025Monday, June 15, 20151434326400
January 1, 2026Friday, January 1, 20161451606400

How to Calculate This Yourself

JavaScript (with day.js)

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

Bash (GNU date)

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