3 Months Ago

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

Tuesday, January 27, 2026

Unix timestamp: 1769472000 · ISO 8601: 2026-01-27T00:00:00Z

Worked Examples From Reference Dates

Start Date3 months beforeUnix Timestamp
January 1, 2024Sunday, October 1, 20231696118400
July 4, 2024Thursday, April 4, 20241712188800
January 1, 2025Tuesday, October 1, 20241727740800
June 15, 2025Saturday, March 15, 20251741996800
January 1, 2026Wednesday, October 1, 20251759276800

How to Calculate This Yourself

JavaScript (with day.js)

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

Bash (GNU date)

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