Open two calendars side by side and you may find they disagree about something basic. One begins its rows on Monday; the other begins on Sunday. Neither is a bug. The week start is a convention rather than a fact, and two long-standing conventions are in active use, along with a third that is standard across much of the Middle East and North Africa. The disagreement is harmless right up until you are counting week numbers, comparing reports, or arguing about which day the middle of the week falls on.

This article explains where each convention came from, which is the international standard, what common software defaults to, and how the choice quietly moves the week's midpoint. To check which day any particular date lands on, the day of the week page will work it out for you.

Monday or Sunday: Which Week Start Is Correct?

Both are correct within their own tradition, but only one is standardised. ISO 8601, the international standard for representing dates and times, defines the week as running Monday to Sunday, with Monday as day one. The Sunday-first arrangement is the older religious and civil convention, still dominant in the United States and Canada.

So there is a defensible short answer: for anything technical, international or numbered, Monday. For a wall calendar in a North American kitchen, Sunday. Trouble arises only when a system built on one assumption exchanges data with a system built on the other.

The ISO 8601 Week Start

ISO 8601, first published in 1988, fixed Monday as the first day of the week and defined week numbering along with it. Its rule for week one is precise: week one is the week containing the first Thursday of the year, which is the same as saying the week containing 4 January.

That definition has a consequence people often find surprising. A year's first days can belong to the last week of the previous year, and its last days can belong to week one of the next. The 2 January of one year and the 31 December of another can sit in the same ISO week. This is deliberate: the rule guarantees that every ISO week has exactly seven days and belongs to exactly one year, which matters enormously for financial and manufacturing reporting where weeks must not be ragged.

Where the Sunday Week Start Comes From

The Sunday-first order is much older than the standard that displaced it. It descends from the Hebrew week, which counts from Sunday and culminates in the Sabbath on the seventh day, Saturday. The days in Hebrew are largely numbered rather than named, so the ordinal position is explicit: Wednesday is Yom Revi'i, the fourth day.

Christian practice inherited the ordering and kept Sunday first as the Lord's Day, and that arrangement travelled into European and then American civil calendars. The Islamic week likewise counts from Sunday, with Friday the day of congregational prayer, which is why the weekend in many Muslim-majority countries falls on Friday and Saturday rather than Saturday and Sunday. In those countries the standard working week begins on Sunday, giving a week start that matches the Hebrew ordering while producing an entirely different rhythm.

Which Software Defaults Where?

Defaults split roughly along the line between technical standards and consumer locale settings. Programming languages and data formats tend to follow ISO 8601; consumer calendars follow the user's region.

  • ISO 8601 and Python: Monday first. Python's date.weekday() returns 0 for Monday, and isoweekday() returns 1 for Monday.
  • JavaScript: Sunday first. Date.getDay() returns 0 for Sunday, a legacy of the language's American origins.
  • Microsoft Excel: Sunday by default. WEEKDAY() treats Sunday as 1 unless you pass a different return type, and WEEKNUM() counts from a Sunday-start week, while ISOWEEKNUM() gives the standard answer.
  • Google Calendar and Apple Calendar: locale-driven, showing Sunday first for United States users and Monday first across most of Europe, with a manual override available.
  • Unix cal: Sunday first in its traditional form, with a switch to force a Monday week start.

Most of this behaviour ultimately traces back to locale data, which records a first day of the week for every territory. That is why the same application can present a different week start on two machines with identical software.

How the Week Start Changes the Midpoint

The midpoint of the seven-day cycle is Wednesday under both the Monday and Sunday conventions, since Wednesday is the median in either ordering: third of seven counting from Monday, fourth of seven counting from Sunday. What actually shifts is the shape of the working week and how the calendar looks on a page.

  • Monday start: the two rest days sit together at the right-hand end of the row, so the working week reads as an unbroken block with Wednesday visibly in the middle.
  • Sunday start: the weekend is split, one day at each end of the row, which makes the working week look off-centre even though Wednesday is still the median day.
  • Saturday start: used across much of the Middle East and North Africa, this places Tuesday at the median.
  • Working-week midpoint: for a Sunday-to-Thursday working week, the halfway point is Tuesday, not Wednesday at all.

That last case is the one that genuinely changes the answer. Where the working week runs Sunday to Thursday, the midweek lull arrives a day earlier, which is a good reminder that the middle of the week is defined by the position of the rest days rather than by anything about Wednesday itself. The full range of definitions is set out in what counts as midweek.

Choosing a Week Start for Your Own Work

If you are building anything that counts weeks, pick ISO 8601 and be explicit about it. Store dates unambiguously, use ISO week numbers rather than home-made ones, and state the convention wherever a week number is displayed. Most week-numbering disputes are two people using the same label for different spans.

For personal planning the choice matters less, but a Monday week start does make the working week easier to see in one piece, which helps if you use a midweek checkpoint of the kind described in planning your week around Wednesday. Whichever you choose, the week progress tracker shows how much of the current week has elapsed, and if you need the weekday of a date in the past, what day was I born covers how to work it out by hand.

Conclusion

The week start is a convention with two respectable answers. ISO 8601 makes Monday day one and defines week one as the week containing the first Thursday of the year, which is why technical systems and most of Europe begin there. The Sunday-first order is older, rooted in the Hebrew and Christian week and still standard in the United States and Canada, while a Saturday start prevails across much of the Middle East and North Africa. Wednesday stays the median day under the first two, but the working week's midpoint moves with the rest days. Look up any date on the day of the week page, or explore the rest of midweek.now.