Dates
Day of the Week Calculator
Find out what day of the week any date falls on, past or future.
Day of the Week Calculator
Thursday
Finding the weekday for any date — decades in the past or centuries in the future — comes down to a single shared algorithm rather than a printed calendar lookup, and this tool exposes that algorithm directly rather than treating it as a black box.
How the Day of the Week Calculator works
The calculation converts the target date into an ordinal day count from a fixed reference point and takes that count modulo 7 — the same underlying date-core routine used by the Next Birthday Weekday Finder and Perpetual Calendar elsewhere on this site, so results stay consistent everywhere. For dates before the Gregorian calendar's real historical adoption in 1582 (or later — Britain and its colonies didn't adopt it until 1752), this tool uses the standard "proleptic" convention of projecting the Gregorian rule backward, which is the normal practice for date-math software but does not match what a calendar actually in use at the time would have shown.
Genealogists, historians, and puzzle enthusiasts are common real users of this specific tool, since working out a historical document's actual weekday (a letter dated only by day and date, for instance) can help cross-check or narrow down an otherwise ambiguous or disputed date.
Worked example
July 20, 1969 — the day of the Moon landing — falls on a Sunday: 1969's January 1 was a Wednesday, and July 20 is the 201st day of that non-leap year, an offset of 200 days from January 1, which lands 4 weekdays after Wednesday — Sunday, matching the historical record.
Edge cases this tool handles correctly
- Dates before 1582
- This tool computes weekdays for pre-1582 dates using the proleptic Gregorian calendar (projecting today's rules backward), which is standard for date-math software but will differ from what the Julian calendar actually in use at the time displayed, since the two calendars had drifted apart by about 10 days by 1582.
- Countries that adopted the Gregorian calendar late
- Britain and its colonies (including what's now the US) didn't switch from the Julian to the Gregorian calendar until 1752 — a genuinely later adoption than most of continental Europe, which is worth knowing when comparing historical dates across countries from that era.
- No practical limit on date range
- Because the method is direct calendar arithmetic rather than a bounded lookup table, it works the same way for a date next week as for one a thousand years away.
- Checking a date far in the future
- The same modular-arithmetic method that works for historical dates extends just as reliably centuries into the future, since it doesn't rely on any bounded calendar table that could eventually run out of entries.
- Multiple dates at once
- The tool resolves one date at a time; checking a whole list of dates (a series of historical events, for instance) means running the calculation once per date, each independent of the others.
- Countries that adopted the Gregorian calendar on different dates
- Beyond Britain's 1752 switch, different countries adopted the Gregorian calendar in different years — Catholic countries like Spain, Portugal, and much of Italy switched in 1582, most Protestant German states and Denmark switched decades to over a century later, and Russia didn't switch until 1918 — so a weekday computed for a historical date from a country's own local calendar in use at the time can differ from this tool's proleptic-Gregorian answer depending on which country and year are involved.
Frequently asked questions
Can it find weekdays hundreds of years in the past?
Yes, using the proleptic Gregorian calendar convention — projecting today's calendar rules backward in time.
Did every country switch to the Gregorian calendar at the same time?
No — Catholic Europe largely switched in 1582, Britain and its colonies in 1752, and Russia not until 1918, so a historical weekday from a country's own calendar in use at the time can differ from this tool's proleptic-Gregorian answer for dates before that country's specific switch.
Will it match historical records for dates before 1582?
Not necessarily — those dates used the Julian calendar, which had drifted from the Gregorian calendar by about 10 days by the time of the 1582 switch.
What algorithm powers this?
A modular-arithmetic day-count routine — see the how-it-works section above for which other tools share it.
Does it work the same for future dates as past ones?
Yes — the same modular-arithmetic method extends equally in both directions with no special-casing.
Is there a limit on how far into the future it can check?
No practical limit — the underlying calculation is direct arithmetic rather than a bounded lookup table.
Does it show the date in a specific format?
The weekday name is shown alongside the date you entered, in the format used consistently across the site's other calendar tools.