2 Months Ago

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

Friday, February 27, 2026

Unix timestamp: 1772150400 · ISO 8601: 2026-02-27T00:00:00Z

Worked Examples From Reference Dates

Start Date2 months beforeUnix Timestamp
January 1, 2024Wednesday, November 1, 20231698796800
July 4, 2024Saturday, May 4, 20241714780800
January 1, 2025Friday, November 1, 20241730419200
June 15, 2025Tuesday, April 15, 20251744675200
January 1, 2026Saturday, November 1, 20251761955200

How to Calculate This Yourself

JavaScript (with day.js)

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

Bash (GNU date)

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