60 Days Ago

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

Thursday, February 26, 2026

Unix timestamp: 1772064000 · ISO 8601: 2026-02-26T00:00:00Z

Worked Examples From Reference Dates

Start Date60 days beforeUnix Timestamp
January 1, 2024Thursday, November 2, 20231698883200
July 4, 2024Sunday, May 5, 20241714867200
January 1, 2025Saturday, November 2, 20241730505600
June 15, 2025Wednesday, April 16, 20251744761600
January 1, 2026Sunday, November 2, 20251762041600

How to Calculate This Yourself

JavaScript (with day.js)

dayjs().subtract(60, 'day').format('YYYY-MM-DD')

Python

from datetime import date, timedelta
result = date.today() - timedelta(days=60)

Bash (GNU date)

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