The same string of digits can mean two different dates depending on where you are. This reference shows which everyday date order — Day-Month-Year, Month-Day-Year, or Year-Month-Day — each country uses, renders a sample date in that order, and always gives the unambiguous ISO 8601 equivalent so you never misread 03/07 again.
How it works
There are three civil date orders in common use:
- DMY (Day-Month-Year), the global majority — most of Europe, Africa, South America, Oceania, and much of Asia.
- MDY (Month-Day-Year), used in everyday writing chiefly in the United States.
- YMD (Year-Month-Day), official across East Asia and identical in order to the ISO 8601 standard.
The tool stores each country’s dominant order and formats one fixed sample date
(7 March 2026, chosen because day 7 and month 3 can’t be confused) in that order,
alongside the ISO form YYYY-MM-DD.
Why it matters and tips
A numeric date like 03/07/2026 is genuinely ambiguous: 7 March in the US, 3 July
almost everywhere else. That ambiguity causes missed deadlines, double bookings,
and data-entry bugs. For anything machine-readable or crossing borders, write dates
in ISO 8601 (YYYY-MM-DD): it is unambiguous and sorts correctly as plain text,
which makes it ideal for filenames, logs, and databases. National usage can vary by
context — many countries use ISO formats in technical settings even where DMY
dominates daily life — so this table lists the dominant everyday civil order rather
than a single rigid rule.