1 Week From Today

What date is 1 week 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 4, 2026

Unix timestamp: 1777852800 · ISO 8601: 2026-05-04T00:00:00Z

Worked Examples From Reference Dates

Start Date1 week afterUnix Timestamp
January 1, 2024Monday, January 8, 20241704672000
July 4, 2024Thursday, July 11, 20241720656000
January 1, 2025Wednesday, January 8, 20251736294400
June 15, 2025Sunday, June 22, 20251750550400
January 1, 2026Thursday, January 8, 20261767830400

How to Calculate This Yourself

JavaScript (with day.js)

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

Python

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

Bash (GNU date)

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