What day of the week was it (or will it be)
We remember dates all the time —a birthday, a wedding, the day a contract was signed— but rarely the day of the week they landed on. This tool answers that for any date, past or future: type it in and you instantly get the weekday, plus the day number within the year (1 to 366) and whether that year is a leap year. Everything runs in your browser; nothing is sent to a server.
It is handy for planning (“which day does my birthday fall on in 2030?”), checking old records, settling history trivia, or plain curiosity.
How to use the tool
- Pick a date. The picker accepts a wide range of years, both past and future.
- To check today, tap Use today.
- Read the main card: the weekday shows in large type, with the right verb tense (was, is, or will be).
- Below it you get the day of the year and whether the year is a leap year. You can copy the result as a ready-to-paste sentence.
The method: Zeller’s congruence
The weekday is not random: it follows a perfectly predictable 7-day cycle inside the Gregorian calendar. The classic way to work it out by hand is Zeller’s congruence:
h = (q + floor(13·(m+1)/5) + K + floor(K/4) + floor(J/4) + 5·J) mod 7
where q is the day of the month, m is the month (but January and February count as months 13 and 14 of the previous year), K is the last two digits of the year and J is the first two. The result h reads as: 0 = Saturday, 1 = Sunday, 2 = Monday, and so on up to 6 = Friday.
The day of the year is the sum of the days in the earlier months plus the current day. A year is a leap year if it is divisible by 4, except century years, which must also be divisible by 400 (so 2000 was a leap year but 1900 was not).
Worked example
Take the Moon landing: July 20, 1969. Here q = 20, m = 7, K = 69, and J = 19:
h = (20 + floor(13·8/5) + 69 + floor(69/4) + floor(19/4) + 5·19) mod 7
That is 20 + 20 + 69 + 17 + 4 + 95 = 225, and 225 mod 7 = 1, which maps to Sunday. The day of the year is 31 + 28 + 31 + 30 + 31 + 30 + 20 = 201, and since 1969 is not divisible by 4, it was not a leap year. The tool confirms: July 20, 1969 was a Sunday, day 201 of 365.
Verified well-known dates
| Date | Weekday | Day of year | Leap year |
|---|---|---|---|
| Feb 27, 1844 (DR Independence) | Tuesday | 58 | Yes |
| Jul 20, 1969 (Moon landing) | Sunday | 201 | No |
| Jan 1, 2000 (turn of the millennium) | Saturday | 1 | Yes |
| Feb 29, 2024 (leap day) | Thursday | 60 | Yes |
| Dec 25, 2026 (Christmas) | Friday | 359 | No |
Frequently asked questions
Does it work with very old or very distant dates?
Yes. The calculation uses the proleptic Gregorian calendar, which applies today’s rules backward and forward without limit. Keep in mind that countries adopted the Gregorian calendar in different years; for dates before that adoption, the result is the Gregorian weekday, not the Julian one people used at the time.
Why doesn’t the result change with my time zone?
Because a calendar date (year, month, and day) is the same everywhere. The tool works in UTC and builds the date with no time attached, so July 9 is a Thursday whether you look at it from New York or from Tokyo.
What is the day of the year?
It is the position of a date within its year, counting January 1 as day 1. December 31 is day 365 in a common year and day 366 in a leap year. It is widely used in logistics, astronomy, and computing.
How do I know if a year is a leap year?
A year is a leap year if it is divisible by 4, with one catch: century years (divisible by 100) only qualify if they are also divisible by 400. So 2024 and 2000 are leap years, but 2023, 2100, and 1900 are not.
Can I find out which day my birthday falls on years from now?
Absolutely. Enter the future date and the tool returns the weekday. It is a quick way to see whether an anniversary lands on a weekend or a weekday.