2 Weeks From Today

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

Monday, May 11, 2026

Unix timestamp: 1778457600 · ISO 8601: 2026-05-11T00:00:00Z

Worked Examples From Reference Dates

Start Date2 weeks afterUnix Timestamp
January 1, 2024Monday, January 15, 20241705276800
July 4, 2024Thursday, July 18, 20241721260800
January 1, 2025Wednesday, January 15, 20251736899200
June 15, 2025Sunday, June 29, 20251751155200
January 1, 2026Thursday, January 15, 20261768435200

How to Calculate This Yourself

JavaScript (with day.js)

dayjs().add(2, 'week').format('YYYY-MM-DD')

Python

from datetime import date, timedelta
result = date.today() + timedelta(weeks=2)

Bash (GNU date)

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