3 Days From Today

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

Thursday, April 30, 2026

Unix timestamp: 1777507200 · ISO 8601: 2026-04-30T00:00:00Z

Worked Examples From Reference Dates

Start Date3 days afterUnix Timestamp
January 1, 2024Thursday, January 4, 20241704326400
July 4, 2024Sunday, July 7, 20241720310400
January 1, 2025Saturday, January 4, 20251735948800
June 15, 2025Wednesday, June 18, 20251750204800
January 1, 2026Sunday, January 4, 20261767484800

How to Calculate This Yourself

JavaScript (with day.js)

dayjs().add(3, 'day').format('YYYY-MM-DD')

Python

from datetime import date, timedelta
result = date.today() + timedelta(days=3)

Bash (GNU date)

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