12 Months Ago

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

Sunday, April 27, 2025

Unix timestamp: 1745712000 · ISO 8601: 2025-04-27T00:00:00Z

Worked Examples From Reference Dates

Start Date12 months beforeUnix Timestamp
January 1, 2024Sunday, January 1, 20231672531200
July 4, 2024Tuesday, July 4, 20231688428800
January 1, 2025Monday, January 1, 20241704067200
June 15, 2025Saturday, June 15, 20241718409600
January 1, 2026Wednesday, January 1, 20251735689600

How to Calculate This Yourself

JavaScript (with day.js)

dayjs().subtract(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 →