International Date Format Reference

Date format conventions by country: DMY, MDY, or YMD

Look up the everyday date notation used in countries worldwide, DMY, MDY, or YMD, with each shown as a sample date and the unambiguous ISO 8601 equivalent. Search and filter to avoid 03/07 vs 07/03 confusion. Runs in your browser. It runs free in your browser on Gera Tools, with nothing uploaded.

Last updated Source: Gera Tools

Which date order is most common worldwide?

Day-Month-Year (DMY) is by far the most widespread, used across most of Europe, Africa, South America, Oceania, and much of Asia. Month-Day-Year (MDY) is mainly a United States convention, while Year-Month-Day (YMD) dominates East Asia.

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.

The three systems

OrderAbbreviationExample (7 March 2026)Primary regions
Day-Month-YearDMY07/03/2026Europe, Africa, South America, Oceania, most of Asia
Month-Day-YearMDY03/07/2026United States (everyday usage)
Year-Month-DayYMD2026-03-07East Asia; ISO 8601 standard globally

DMY is by far the most widespread convention worldwide. MDY is almost exclusively an American practice. YMD is official in China, Japan, Korea, and Hungary, and it is the international standard for technical use everywhere.

How it works

The tool stores each country’s dominant order and formats one fixed sample date (7 March 2026, chosen because day 7 and month 3 cannot be confused) in that order, alongside the ISO form YYYY-MM-DD.

Why ambiguity is a real problem

A numeric date like 03/07/2026 is genuinely ambiguous:

  • In the United States (MDY) it reads as 7 March.
  • In the United Kingdom and most of the world (DMY) it reads as 3 July.

A contract or travel booking crossing that boundary is misread nearly half the time when only a numeric date is used. Real consequences include missed legal deadlines, double bookings in scheduling software, and silent data corruption when CSV files with MDY dates are imported into a database expecting DMY.

ISO 8601: the universal fix

YYYY-MM-DD is the ISO 8601 format. It is completely unambiguous regardless of reader location, and it sorts chronologically when compared as plain text — a property no other date format shares. Use it for:

  • Database fields and API responses.
  • Filenames where date order matters (for example report-2026-03-07.pdf sorts correctly; report-07-03-2026.pdf does not).
  • Log files where chronological sort must match alphabetical sort.
  • Any document crossing national borders.

Country-by-country notes

Usage within a country is not always uniform. Canada officially uses YMD in federal documents but sees all three orders in daily life. The Philippines uses MDY in everyday writing despite being geographically in a DMY region. Many English-speaking countries that use DMY casually have adopted ISO 8601 in technical and government contexts. This reference shows the dominant everyday civil order; treat it as a guide, not a rigid rule for every document type.