60 Months Ago

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

Tuesday, April 27, 2021

Unix timestamp: 1619481600 · ISO 8601: 2021-04-27T00:00:00Z

Worked Examples From Reference Dates

Start Date60 months beforeUnix Timestamp
January 1, 2024Tuesday, January 1, 20191546300800
July 4, 2024Thursday, July 4, 20191562198400
January 1, 2025Wednesday, January 1, 20201577836800
June 15, 2025Monday, June 15, 20201592179200
January 1, 2026Friday, January 1, 20211609459200

How to Calculate This Yourself

JavaScript (with day.js)

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

Bash (GNU date)

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