3 Years From Today

What date is 3 years after 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)

Friday, April 27, 2029

Unix timestamp: 1871942400 · ISO 8601: 2029-04-27T00:00:00Z

Worked Examples From Reference Dates

Start Date3 years afterUnix Timestamp
January 1, 2024Friday, January 1, 20271798761600
July 4, 2024Sunday, July 4, 20271814659200
January 1, 2025Saturday, January 1, 20281830297600
June 15, 2025Thursday, June 15, 20281844640000
January 1, 2026Monday, January 1, 20291861920000

How to Calculate This Yourself

JavaScript (with day.js)

dayjs().add(3, '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=3)

Bash (GNU date)

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