Time Precise

ISO 8601 Date and Time Format

The international standard for representing dates, times, and datetime values

What is ISO 8601?

ISO 8601 is an international standard published by the International Organization for Standardization that defines formats for representing dates, times, and durations. It provides unambiguous, machine-readable date and time formats that work across different systems and cultures.

The standard was first published in 1988 and has become the de facto format for datetime exchange in computing, international trade, and documentation.

Date Format

The basic ISO 8601 date format is:

YYYY-MM-DD

Where:

Examples:

Time Format

The ISO 8601 time format uses 24-hour clock notation:

HH:MM:SS

Where:

Examples:

Combined Date and Time

When combining date and time, use the letter T as a separator:

YYYY-MM-DDTHH:MM:SS

Examples:

Timezone Information

ISO 8601 supports timezone offsets in two ways:

UTC (Zulu Time)

Use Z to indicate UTC:

2026-04-24T14:30:00Z

The Z stands for "Zulu" (military designation for UTC).

Offset from UTC

Specify the offset from UTC using ±HH:MM:

Decimal Fractions

You can add decimal fractions for precision:

Why Use ISO 8601?

Benefits of ISO 8601:

Related Formats

ISO 8601 is closely related to these standards:

See Also