Day of the week finder
Find out which day of the week any date falls on — past or future. It answers questions like “what day was I born?”, “what weekday is my deadline?” or “is that date a weekend?” in one click.
How it works
You pick a date and the tool reads its weekday from the calendar. Internally, dates are numbered 0 for Sunday through 6 for Saturday. From that it produces three pieces of information:
- The named weekday (Monday, Tuesday, …), formatted in your browser’s language
- The ISO 8601 weekday number, where Monday = 1 and Sunday = 7 — handy for spreadsheets and code
- A weekend flag: a date is a weekend if it falls on Saturday or Sunday, otherwise it is a weekday
The date is handled as a pure calendar date with no time, so the result is the same in every time zone.
Example
For 15 June 2026:
- Weekday: Monday
- ISO weekday number: 1
- Weekend: no (it is a weekday)
| Date | Weekday | ISO number | Weekend? |
|---|---|---|---|
| 2026-06-15 | Monday | 1 | No |
| 2026-06-20 | Saturday | 6 | Yes |
| 2000-01-01 | Saturday | 6 | Yes |
Everything runs entirely in your browser — nothing is uploaded.