Calendar Weeks.
The current ISO calendar week at a glance — plus every week of any year, and which week any date falls into.
How ISO calendar weeks work
ISO 8601 — the standard across Europe — defines weeks that start on Monday and numbers them from the week containing the year's first Thursday (the week of January 4). Every date belongs to exactly one week, written like 2026-W28. Because weeks do not align with month or year boundaries, the days around New Year can belong to the other year's first or last week.
52 weeks — usually
Most years have 52 ISO weeks, but a year that starts on a Thursday — or a leap year starting on a Wednesday — squeezes in a week 53. 2026 is such a long year; the next ones are 2032 and 2037. Software that hard-codes 52 weeks per year quietly breaks in those years, so treat the week count as data, not as a constant.
Week numbers as version numbers
Calendar-based versioning (CalVer) uses the year and week as a release number — 2026.28 or 26w28 — so every artifact instantly tells you when it was built and how old it is. Ubuntu, JetBrains and many internal platform teams version this way. The copy buttons above produce exactly these formats.
Careful with US week numbers
The North American convention starts weeks on Sunday and calls the week containing January 1 "week 1" — which often runs one number ahead of ISO. The same trap exists in software: Excel's WEEKNUM() uses the US system by default, while ISOWEEKNUM() matches this page. When exchanging week numbers across teams, always say which system you mean.
Week numbers in your code
function isoWeek(date) {
const d = new Date(Date.UTC(
date.getFullYear(), date.getMonth(), date.getDate()));
d.setUTCDate(d.getUTCDate() + 4 - (d.getUTCDay() || 7));
const yearStart = new Date(Date.UTC(d.getUTCFullYear(), 0, 1));
return Math.ceil(((d - yearStart) / 86400000 + 1) / 7);
}from datetime import date
today = date.today()
year, week, weekday = today.isocalendar()
print(f"{year}-W{week:02d}") # e.g. 2026-W28Frequently asked questions
What calendar week is it right now?
When does week 1 of a year begin?
Why does my calendar app show a different week number?
How many weeks does a year have?
Can a date belong to a week of a different year?
How do I get the ISO week number in Excel?
More free tools
All tools →Free tools from a European software company.
- Runs in your browser
- Made & hosted in the EU
- No account needed