8 Weeks Ago

What date is 8 weeks 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, March 2, 2026

Unix timestamp: 1772409600 · ISO 8601: 2026-03-02T00:00:00Z

Worked Examples From Reference Dates

Start Date8 weeks beforeUnix Timestamp
January 1, 2024Monday, November 6, 20231699228800
July 4, 2024Thursday, May 9, 20241715212800
January 1, 2025Wednesday, November 6, 20241730851200
June 15, 2025Sunday, April 20, 20251745107200
January 1, 2026Thursday, November 6, 20251762387200

How to Calculate This Yourself

JavaScript (with day.js)

dayjs().subtract(8, 'week').format('YYYY-MM-DD')

Python

from datetime import date, timedelta
result = date.today() - timedelta(weeks=8)

Bash (GNU date)

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