18 Months From Today

What date is 18 months after 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)

Wednesday, October 27, 2027

Unix timestamp: 1824595200 · ISO 8601: 2027-10-27T00:00:00Z

Worked Examples From Reference Dates

Start Date18 months afterUnix Timestamp
January 1, 2024Tuesday, July 1, 20251751328000
July 4, 2024Sunday, January 4, 20261767484800
January 1, 2025Wednesday, July 1, 20261782864000
June 15, 2025Tuesday, December 15, 20261797292800
January 1, 2026Thursday, July 1, 20271814400000

How to Calculate This Yourself

JavaScript (with day.js)

dayjs().add(18, '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=18)

Bash (GNU date)

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