12 Months From Today

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

Tuesday, April 27, 2027

Unix timestamp: 1808784000 · ISO 8601: 2027-04-27T00:00:00Z

Worked Examples From Reference Dates

Start Date12 months afterUnix Timestamp
January 1, 2024Wednesday, January 1, 20251735689600
July 4, 2024Friday, July 4, 20251751587200
January 1, 2025Thursday, January 1, 20261767225600
June 15, 2025Monday, June 15, 20261781481600
January 1, 2026Friday, January 1, 20271798761600

How to Calculate This Yourself

JavaScript (with day.js)

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

Bash (GNU date)

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