Date Formatter

[ ISO 8601 ]
2026-04-03
Friday
Day nameFriday
Day of year93
ISO week2026-W14
Read a slashed date as
[ IF READ THE OTHER WAY ]
Month first2026-03-04
[ EVERY FORM ]
ISO 86012026-04-03
Long3 April 2026
Long, month firstApril 3, 2026
With the day nameFriday, 3 April 2026
Short3 Apr 2026
Day first03/04/2026
Month first04/03/2026
Compact20260403
Day of year93 of 365
ISO week2026-W14
QuarterQ2 2026
“03/04/2026” is AMBIGUOUS. Read day first it is 2026-04-03; read the other way it is 2026-03-04. The Philippines uses both conventions — government forms and American-influenced business put the month first, while schools and invoices often put the day first. Write it as 2026-04-03 or as “3 April 2026” and the question disappears.
ISO 8601 is the form to store and to send — it sorts as text, it is unambiguous everywhere, and no locale changes what it means.
[ WHAT THIS IS ]

03/04/2026 is two different dates, and the Philippines uses both.

Government forms and American-influenced business write month first: the 4th of March. Schools, invoices and anything touching Europe or Asia write day first: the 3rd of April.

A month apart, both real dates, and nothing in the string says which.

So it is a setting here, not a guess. The page says which reading it used and prints the other one beside it — a wrong guess is then visible rather than quietly passed along.

When one number is above 12, the question is settled21/09/2026 can only be the 21st of September. No warning is raised there, deliberately: a warning on every date is a warning nobody reads.

And nothing goes through JavaScript’s Date. It silently turns 2026-02-30 into 2 March. Here a day that does not exist is refused, not corrected.

[ QUESTIONS ]

Is 03/04/2026 the 3rd of April or the 4th of March?

Both, and that is the problem. The Philippines uses both conventions: government forms and American-influenced business write MM/DD/YYYY, while schools, invoices and anything touching Europe or Asia write DD/MM/YYYY. The two readings are a month apart and nothing in the string tells you which was meant. So this asks you which to use, says which it used, and prints the other reading beside it — a wrong guess is then visible rather than silent.

When is a slashed date NOT ambiguous?

Whenever one of the numbers is above 12, because only one reading is possible — 21/09/2026 has to be the 21st of September. This raises no warning in that case, deliberately. A tool that warns on every slashed date trains you to ignore the warning.

Which format should I actually use?

ISO 8601 — 2026-09-21 — for anything stored, sent or filed. It sorts correctly as plain text, it means the same thing in every country, and no locale setting can change how it is read. Use a written month ("21 September 2026") for anything a person reads. Reserve the slashed forms for informal writing where both parties already share a convention.

What happened to my two-digit year?

It was expanded on the usual pivot: 00–49 becomes 2000–2049, and 50–99 becomes 1950–1999. That guess is right most of the time and wrong for a birth date in the 1940s, or anything dated past 2049 — so the page tells you when it has guessed. Write the year in full and the question does not arise.

Why does it say my date is in a different year's ISO week?

Because an ISO week belongs to whichever year its Thursday falls in, not to the year printed on the date. 1 January 2027 sits in week 53 of 2026; 31 December 2024 sits in week 1 of 2025. That is correct and it is why the week is always shown with its year — quoting "week 1" without the year is how a report gets filed twelve months out.

Why did it refuse 30 February instead of correcting it?

Because correcting it would be guessing. JavaScript's own Date silently turns 2026-02-30 into 2 March, which means a typo in a form becomes a real-looking date nobody questions. Nothing here goes through Date — the parsing works on the string and refuses a day that does not exist in that month.

[ THE MATHS ]
What 03/04/2026 means
Day first (DD/MM)2026-04-03
Month first (MM/DD)2026-03-04
Apart30 days
Unambiguous2026-04-03
ISO 8601 sorts correctly as plain text and means the same thing in every country.
[ NEXT ]
34Date CalculatorAdd, subtract, or the gap between
78Working Days CalculatorBusiness days, holidays excluded
68Unix Timestamp ConverterThe same trap, in seconds
33Age CalculatorYears, months and days
[ IMPORTANT ]

Runs entirely in your browser; nothing is transmitted. Nothing is parsed through JavaScript's Date, which applies the host's locale and silently turns 30 February into 2 March. A day that does not exist is refused, not corrected. Nothing you type here is sent to our servers — the calculation runs entirely in your browser.