How to Use
- Select a date
Choose the date for which you want to find the week number.
- Run the calculation
Click Calculate to determine the ISO week number.
- View the result
See the week number along with the start and end dates of that week.
What is an ISO 8601 week number?
The ISO 8601 week number is an international standard that labels each week of the year with a sequential number from week 1 to week 52 (or 53). Two rules sit at its core. First, a week starts on Monday and ends on Sunday. Second, week 1 is the week that contains the year's first Thursday, which is the same as saying 'the week containing January 4 is always week 1'.
Why Thursday is the anchor
Thursday decides which year a week mostly belongs to. If more than half of a week falls in the new year, it becomes week 1; otherwise it stays as the last week of the previous year. This keeps weeks from being split ambiguously across year and month boundaries.
That consistency is exactly why manufacturing schedules, accounting close, weekly retail and logistics reports, and global project management (for example 'launch in week 24') use the week number as a shared unit instead of a raw date.
Calculation Formula
Shift the input date to the Thursday of its week, then derive the week number from how many days have passed since January 1 of the year that Thursday falls in.
weekday (Mon=1...Sun=7) -> dThursday = date + (4 - d) daysweek number = ceil(day of year of Thursday / 7)
Example: 2026-01-01 (Thu)
- weekday d = 4 (Thu), adjustment 4 - 4 = 0 -> Thursday stays 2026-01-01
- day of year = day 1
- week number = ceil(1 / 7) = week 1, ISO year 2026
By contrast, 2027-01-01 (Fri) moves its Thursday to 2026-12-31, so it is counted as week 53 of 2026.