6 Months Ago

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

Monday, October 27, 2025

Unix timestamp: 1761523200 · ISO 8601: 2025-10-27T00:00:00Z

Worked Examples From Reference Dates

Start Date6 months beforeUnix Timestamp
January 1, 2024Saturday, July 1, 20231688169600
July 4, 2024Thursday, January 4, 20241704326400
January 1, 2025Monday, July 1, 20241719792000
June 15, 2025Sunday, December 15, 20241734220800
January 1, 2026Tuesday, July 1, 20251751328000

How to Calculate This Yourself

JavaScript (with day.js)

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

Bash (GNU date)

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