150 Days Ago

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

Friday, November 28, 2025

Unix timestamp: 1764288000 · ISO 8601: 2025-11-28T00:00:00Z

Worked Examples From Reference Dates

Start Date150 days beforeUnix Timestamp
January 1, 2024Friday, August 4, 20231691107200
July 4, 2024Monday, February 5, 20241707091200
January 1, 2025Sunday, August 4, 20241722729600
June 15, 2025Thursday, January 16, 20251736985600
January 1, 2026Monday, August 4, 20251754265600

How to Calculate This Yourself

JavaScript (with day.js)

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

Python

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

Bash (GNU date)

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