Date formats by country (DMY / MDY / YMD)

Three conventions dominate: DMY (most of the world), MDY (the US) and YMD (East Asia, ISO 8601). Ambiguity strikes with numbers like 03/04 — March 4 or April 3 — so always match the local format.

Updated:

Country / regionFormatExample (4 March 2026)Separator
United StatesMDY03/04/2026/ or -
PhilippinesMDY03/04/2026/
United KingdomDMY04/03/2026/ or .
IrelandDMY04/03/2026/
GermanyDMY04.03.2026.
FranceDMY04/03/2026/
SpainDMY04/03/2026/ or -
ItalyDMY04/03/2026/
NetherlandsDMY04-03-2026-
PolandDMY04.03.2026.
RussiaDMY04.03.2026.
BrazilDMY04/03/2026/
AustraliaDMY04/03/2026/
New ZealandDMY04/03/2026/
IndiaDMY04/03/2026/ or -
TurkeyDMY04.03.2026.
ChinaYMD2026-03-04-
JapanYMD2026/03/04 or 2026年3月4日/ or 年月日
South KoreaYMD2026-03-04 or 2026년 3월 4일- or 년월일
TaiwanYMD2026-03-04 (民國115年)-
SwedenYMD2026-03-04- (ISO 8601)
HungaryYMD2026.03.04.
CanadaMixed (YMD official)2026-03-04- (ISO 8601)
ThailandDMY04/03/2569 (Buddhist era)/

Notes

Frequently asked questions

Which countries use month-day-year?
Almost exclusively the United States, plus a few others influenced by it such as the Philippines. Canada officially uses YMD but MDY is common informally.
What is the international date format?
ISO 8601: YYYY-MM-DD (2026-03-04). It sorts correctly as text and is unambiguous — use it in code, filenames and data.
Why is 03/04 ambiguous?
In the US it reads March 4; in most other countries April 3. Over 20 countries use DMY while the US uses MDY, so slash dates should be avoided internationally.