/

Day of the Week Calculator

Enter any date โ€” past or future โ€” to find out which day of the week it falls on.

Jump to section
Advertisement
Ad ยท responsive

How to Use the Day of the Week Calculator

Enter any date and the tool instantly shows what day of the week it falls on. Additional facts include the day number of the year, ISO week number, and leap year status. Use the birthday section to find what day you were born on.

About This Tool

Find the day of the week for any date โ€” past, present, or future. Also shows the day number of the year, ISO week number, and whether the year is a leap year. Includes a birthday feature that tells you what day of the week you were born on.

Where this gets used: a genealogist figuring out what weekday a great-grandparent was born in 1907 (which can confirm or falsify a handwritten family record); a trivia host building a round where contestants have to identify the day-of-the-week for historical events like the moon landing (Sunday, July 20, 1969); a contract writer setting a signing date for "the first Tuesday of next November" and needing to pick the exact calendar date. None of these are frequent problems, but when they come up, the wrong answer is embarrassing and annoying to verify otherwise.

Under the hood, recent dates (1970โ€“present and near future) use the native JavaScript Date.getDay() method, which returns 0โ€“6 for Sundayโ€“Saturday and handles the Gregorian calendar including leap-year rules. Historical dates before 1970 still work because the Date object supports dates thousands of years in both directions โ€” it models the proleptic Gregorian calendar, meaning the Gregorian rules are applied uniformly even to pre-1582 dates that were historically Julian. For most purposes this is what people want (a consistent mathematical calendar); for historical research that requires the actual Julian date, subtract the Julian-Gregorian offset for that century (~10 days in the 1500s, growing to ~13 days in the 1900s).

The ISO week number follows ISO 8601: week 1 of a year is the week containing the first Thursday of January, which means January 1 can fall in week 52 or 53 of the previous year. Leap-year detection uses the full rule: divisible by 4, but not 100, except also by 400 (so 2000 is a leap year, 1900 is not). Compared to typing into Google (which returns the correct day but not the year-day or ISO week), this tool surfaces all four facts at once. See also the option to calculate age from a birthdate and the calculate future dates tool for arithmetic on those dates.

Quick Reference Table

DayISO Number
Monday1
Tuesday2
Wednesday3
Thursday4
Friday5
Saturday6
Sunday7

Frequently Asked Questions

How far back in history does this work?

The calculator works for any date supported by the JavaScript Date object, which covers thousands of years in both directions.

What is the ISO week number?

ISO 8601 defines week numbering where Week 1 is the week containing the first Thursday of the year. Weeks start on Monday.

Does this account for calendar changes?

The calculator uses the proleptic Gregorian calendar. For dates before the Gregorian calendar was adopted (1582 in most countries), results follow Gregorian rules rather than the Julian calendar that was in use at the time.

Is the date I check persisted or sent anywhere?

No. The Day of the Week Calculator takes your input date, applies the Zeller's congruence algorithm (or the native Date.getDay for recent dates) in your browser, and returns the weekday name. Your input is never sent to a server and not saved between sessions โ€” historical and future dates are all computed locally.

Can I find what day of the week a future date falls on?

Yes. Enter any future date and the tool instantly shows the day of the week, the day number of the year, and the ISO week number. Useful for planning events, checking when holidays fall, and scheduling.

The Toobits Team

Created by The Toobits Team ยท Engineering & Editorial

Toobits is built, tested, and maintained by a small independent engineering team. Every tool is written in TypeScript, runs entirely in the browser, and is reviewed against its source formulas before publication.

Editorial policy ยท Updated April 2026

Advertisement
Ad ยท responsive