dates guide
Date Format Guide
The same date can look like 2026-06-15, 06/15/2026, 15/06/2026, June 15 2026, or 1750032000 depending on who wrote it and why. Misreading a date format is one of the most common sources of off-by-one or off-by-month errors in spreadsheets, imports, and scheduling systems. This guide explains the standard date formats in wide use, where each one comes from, how to read an unfamiliar format correctly, and which DateToolsHQ tool to use when you need to convert. For authoritative formatting rules in a specific system, consult that system's documentation.
Last updated: June 29, 2026
ISO 8601 — the international standard
ISO 8601 is the international standard for representing dates and times. The date-only form is YYYY-MM-DD: a four-digit year, two-digit month, and two-digit day separated by hyphens. June 15, 2026 is written 2026-06-15.
ISO 8601 is unambiguous in any locale. 2026-06-15 cannot be mistaken for the 6th of an imaginary month 15, because the largest month number is 12 and the format always puts year first. Most programming languages, databases, and APIs prefer or require this format.
The full datetime form adds a time component and a timezone designator: 2026-06-15T14:30:00Z means 2:30 PM UTC on June 15, 2026. The Date Format Converter accepts and outputs ISO 8601 alongside other formats.
When you paste a date into a spreadsheet or database import and it shows the wrong month, check whether the source was ISO order (YYYY-MM-DD) and the target parsed it as a different format.
Examples
ISO date only
2026-06-15 → June 15, 2026. Year first, month second, day last, hyphens as separators.
ISO datetime in UTC
2026-06-15T09:00:00Z → June 15, 2026 at 9:00 AM UTC. The trailing Z denotes UTC (Zulu time).
US and UK date formats
The US format is MM/DD/YYYY: month first, day second, four-digit year, forward slashes as separators. 06/15/2026 is June 15, 2026 in US convention. Two-digit years (06/15/26) are still common on paper forms but ambiguous in software.
The UK and most of Europe use DD/MM/YYYY: day first, month second, year. 15/06/2026 is also June 15, 2026 in UK convention. 06/07/2026 means July 6 in the US but June 7 in the UK—the ambiguity is real and causes errors in shared documents.
The safest rule in any cross-border context: write the month as a word or three-letter abbreviation (Jun 15, 2026 or 15 Jun 2026) so the order is obvious regardless of locale.
When you receive a date file from a different country and the values look plausible in both formats, look for dates where day > 12. A value like 25/06/2026 can only be DD/MM/YYYY because month 25 does not exist—so the format is DD/MM.
Examples
US format
06/15/2026 → June 15, 2026. Month/Day/Year. The 15 cannot be a month, confirming the US order.
UK format
15/06/2026 → June 15, 2026. Day/Month/Year. Same date, different meaning for the first field.
Long-form and abbreviated date formats
Long-form dates write the month as a full word: June 15, 2026 (US) or 15 June 2026 (UK). These are unambiguous and preferred for formal documents, legal filings, and correspondence where clarity matters more than brevity.
Abbreviated formats use a three-letter month abbreviation: Jun 15, 2026 or 15 Jun 2026. The abbreviation removes month/day order ambiguity without the full word length.
Some systems use ordinal-day formats—Day 166 of 2026 or Julian date 2026166—primarily in astronomy, logistics, and manufacturing. These do not map directly to calendar months without conversion.
Fiscal calendar formats number weeks or periods from a company-specific start date. These are internal conventions and require knowing the fiscal year start before conversion.
Examples
Long-form US
June 15, 2026 — unambiguous, preferred in formal writing. The month word removes any order ambiguity.
Abbreviated
15 Jun 2026 — common in aviation, military, and logistics to eliminate month/day ambiguity quickly.
Unix timestamps and numeric formats
A Unix timestamp is the number of seconds (or milliseconds in some systems) since midnight UTC on January 1, 1970. 1750032000 represents a specific instant in 2026. Timestamps are timezone-independent and sort correctly as integers.
Timestamps appear in log files, API responses, database columns, and wherever systems need a compact, unambiguous representation of a moment in time. The Unix Timestamp Converter converts between a timestamp and a human-readable UTC date.
Millisecond timestamps are thirteen digits instead of ten. If a timestamp looks unusually large—like 1750032000000—it is likely milliseconds rather than seconds. Divide by 1000 to get the Unix second value.
Timestamps always represent UTC. When displaying a timestamp to a user, you must convert to their local timezone—the Timezone Converter shows how an instant differs across time zones.
Converting between date formats
The Date Format Converter on DateToolsHQ accepts a date in any supported format and outputs the same date in ISO 8601, US, UK, and long-form representations. Use it when you need to standardize dates from a file or source that uses an unfamiliar pattern.
For Unix timestamp conversion specifically, the Unix Timestamp Converter accepts a Unix second or millisecond value and displays the UTC date, or accepts a date and outputs the timestamp.
Spreadsheet date serial numbers—where 1 equals January 1, 1900 in Excel or January 1, 1904 in some Mac spreadsheets—are different from Unix timestamps. They are not directly interchangeable without knowing which epoch the file uses.
Date format errors in imports are easier to catch before the import than after. If a batch of dates will move between systems, run a sample through the Date Format Converter and compare source and target representations before processing the full file.
Frequently asked questions
- What is the most widely accepted date format?
- ISO 8601 (YYYY-MM-DD) is the international standard and the format accepted by most programming languages, databases, and APIs. It is unambiguous in any locale and sorts correctly as text.
- Why does 06/07/2026 mean different things in different countries?
- In the US the format is MM/DD/YYYY, so 06/07/2026 is June 7. In the UK and Europe it is DD/MM/YYYY, so the same string means July 6. Use ISO 8601 or write the month as a word to eliminate the ambiguity.
- What is a Unix timestamp?
- A Unix timestamp is the number of seconds (or milliseconds) elapsed since January 1, 1970 at midnight UTC. It represents a specific instant in time, independent of timezone, and is used in logs, APIs, and databases. Use the Unix Timestamp Converter to translate between a timestamp and a human-readable date.
- How do I convert between date formats?
- Use the Date Format Converter on DateToolsHQ. Enter the date in its current format and the tool outputs ISO 8601, US, UK, and long-form representations of the same date. For Unix timestamps, use the Unix Timestamp Converter.
- Why does my spreadsheet import show the wrong month?
- The most common cause is a format mismatch: the source file uses one day/month order and the import tool assumed the other. Look for values where day > 12—those can only appear in one position—to identify the correct format, then re-import with the right setting.
Related calculators
- Date Format ConverterConvert dates between ISO, UTC, local, and readable formats.
- Unix Timestamp ConverterConvert Unix timestamps to readable dates and readable dates to Unix timestamps.
- Timezone ConverterConvert time between common timezones and compare time differences.
- Date Difference CalculatorFind the exact difference between two dates in days, hours, minutes, and seconds.
- Days Between DatesCalculate the number of days between two calendar dates.
Related guides
- Unix Timestamp GuideLearn what Unix timestamps are, how they work, why they are timezone-independent, and how to convert between timestamps and human-readable dates with DateToolsHQ.
- Timezone GuideLearn how timezones work, what UTC offsets and daylight saving time mean, and how to convert times between timezones using DateToolsHQ.
- Date Calculation ReferenceA practical reference for calendar days, business days, date ranges, and which DateToolsHQ calculator fits each question.
- How to Count Days Between DatesStep-by-step guidance for counting days between two dates, inclusive vs exclusive rules, and using the days between dates calculator.