120 Days Ago

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

Sunday, December 28, 2025

Unix timestamp: 1766880000 · ISO 8601: 2025-12-28T00:00:00Z

Worked Examples From Reference Dates

Start Date120 days beforeUnix Timestamp
January 1, 2024Sunday, September 3, 20231693699200
July 4, 2024Wednesday, March 6, 20241709683200
January 1, 2025Tuesday, September 3, 20241725321600
June 15, 2025Saturday, February 15, 20251739577600
January 1, 2026Wednesday, September 3, 20251756857600

How to Calculate This Yourself

JavaScript (with day.js)

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

Python

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

Bash (GNU date)

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