Loading page...
Loading page...
Determine the day of the week for any past, present, or future date.
Everything you need to know
Have you ever wondered what day of the week you were born on? Or perhaps you need to know if Christmas will fall on a weekend next year? Without a physical calendar in front of you, determining the weekday of a specific date requires executing a complex mathematical algorithm in your head.
The Day of the Week Calculator solves this instantly. Simply input any date—past, present, or future—and it will instantly reveal whether it lands on a Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, or Sunday.
You don't need to scroll through years of digital calendars to find your answer.
Behind the scenes, this calculator utilizes a mathematical formula known as Zeller's congruence, devised by Christian Zeller in the late 19th century.
The formula relies on modular arithmetic to determine the day of the week. Because the calendar repeats its structure periodically (accounting for 365-day years and 366-day leap years), mathematicians can assign numeric values to centuries, years, and months, add them together, and find the remainder when divided by 7.
If the remainder is 0, the day is Saturday. If the remainder is 1, the day is Sunday, and so forth.
The primary reason manual calculation is so difficult is the leap year rule. A year is a leap year if it is perfectly divisible by 4. However, years divisible by 100 are not leap years, unless they are also divisible by 400. Zeller's algorithm elegantly accounts for all these exceptions mathematically.
Behind the scenes, we use Zeller's Congruence, a mathematical algorithm designed to calculate the day of the week for any Julian or Gregorian calendar date.
h = (q + [13(m + 1) / 5] + K + [K / 4] + [J / 4] - 2J) mod 7
Where:
h = Day of the week (0 = Saturday, 1 = Sunday, etc.)
q = Day of the month
m = Month (3 = March, 4 = April... Jan/Feb are counted as months 13/14 of the previous year)
K = Year of the century (year mod 100)
J = Zero-indexed century (year / 100)
Scenario 1: Planning Future Events
You are planning a massive family reunion for July 4th, 2030. You need to know if people will have to take off work. By plugging the date into the calculator, you discover that July 4th, 2030 is a Thursday, meaning you might want to plan a long 4-day weekend.
Scenario 2: Historical Research
You are writing a historical paper about the signing of the Declaration of Independence on July 4, 1776. Was it a weekday? The calculator reveals it was indeed a Thursday.
Whether you are tracing your family history, verifying historical facts, or planning a wedding years in advance, the Day of the Week Calculator provides an instant answer without the need to hunt down a physical calendar.
Disclaimer: Calculations for dates prior to the 18th century are based on the modern Gregorian calendar structure projected backwards, which may differ from the actual historical calendars in use at the time.