ISO 8601 Date Formatter
Convert any date and time between ISO 8601 (extended and basic), RFC 2822 email format, RFC 3339, HTTP/GMT, Unix timestamps, ISO week and ordinal dates, and human-readable locale styles. A color-coded anatomy diagram breaks the ISO 8601 string into its year, month, day, time, and UTC-offset parts so you can see exactly how the standard is built, with one-click copy for every format and live updates as you type.
The date and time above, written in every common date format. This text mirror is generated on the server so it works without JavaScript and can be shared or indexed.
| Format | Value |
|---|---|
| ISO 8601 (Extended) | 2026-07-22T12:00:00+00:00 |
| ISO 8601 (Basic) | 20260722T120000Z |
| RFC 3339 / UTC (Z) | 2026-07-22T12:00:00Z |
| ISO Week Date | 2026-W30-3 |
| ISO Ordinal Date | 2026-203 |
| RFC 2822 (Email) | Wed, 22 Jul 2026 12:00:00 +0000 |
| HTTP Date (GMT) | Wed, 22 Jul 2026 12:00:00 GMT |
| Unix Timestamp (seconds) | 1784721600 |
| Unix Timestamp (ms) | 1784721600000 |
| US Long (Locale) | Wednesday, July 22, 2026 at 12:00 PM |
| European / UK (DD/MM/YYYY) | 22/07/2026 12:00 |
| US Short (MM/DD/YYYY) | 07/22/2026 |
Your ad blocker is preventing us from showing ads
MiniWebtool is free because of ads. If this tool helped you, please support us by upgrading for ad-free browsing and more daily uses, or allowlist MiniWebtool.com and reload.
- Allow ads for MiniWebtool.com, then reload
- Or upgrade for ad-free browsing and higher daily limits
About ISO 8601 Date Formatter
The ISO 8601 Date Formatter converts any date and time between the formats developers and writers actually use every day: ISO 8601 (extended and basic), RFC 2822 email dates, RFC 3339, the HTTP/GMT header format, Unix timestamps in seconds and milliseconds, ISO week and ordinal dates, and friendly locale styles. A color-coded anatomy diagram pulls the ISO 8601 string apart so you can see exactly what each digit means, and every result copies with a single click. Everything runs live in your browser, so it is fast and private.
What Is ISO 8601?
ISO 8601 is the international standard for writing dates and times, published by the International Organization for Standardization. Its defining idea is to order each field from the largest unit to the smallest โ year, then month, then day, then hour, minute and second โ so that dates sort correctly even when treated as plain text. The familiar extended form looks like this:
2026-06-29T14:30:00+05:00
Because it is unambiguous and language-independent, ISO 8601 is the default date format in JSON, most web APIs, SQL databases, log files, and the JavaScript Date.prototype.toISOString() method.
The Anatomy of an ISO 8601 Date
Each part of the string has a fixed width and meaning. Reading 2026-06-29T14:30:00+05:00 left to right:
| Part | Example | Meaning |
|---|---|---|
| Year | 2026 | Four-digit calendar year |
| Month | 06 | Month, zero-padded 01โ12 |
| Day | 29 | Day of month, zero-padded 01โ31 |
| T | T | Separator marking the start of the time |
| Hour | 14 | Hour on a 24-hour clock, 00โ23 |
| Minute | 30 | Minute, 00โ59 |
| Second | 00 | Second, 00โ59 |
| UTC offset | +05:00 | Hours and minutes ahead of (or behind) UTC; Z means UTC |
ISO 8601 vs RFC 2822 vs Unix Time
- ISO 8601 (
2026-06-29T14:30:00+05:00) is the modern, machine-readable standard. Use it for storage, APIs, and anywhere dates need to sort or compare reliably. - RFC 2822 (
Mon, 29 Jun 2026 14:30:00 +0500) is the older human-readable format from email. You will see it in emailDate:headers and many RSS and Atom feeds. - HTTP date (
Mon, 29 Jun 2026 09:30:00 GMT) is a fixed GMT variant required by HTTP headers such asLast-Modified,Expires, andDate. - Unix timestamp (
1782714600) counts seconds since 1970-01-01 UTC. It is compact and always in UTC, which makes it ideal for measuring durations and storing instants.
What Does the โZโ (Zulu Time) Mean?
A trailing Z stands for Zulu time, the military and aviation name for UTC. It is exactly equivalent to an offset of +00:00. So 2026-06-29T09:00:00Z and 2026-06-29T09:00:00+00:00 describe the very same instant. When you change the UTC offset in this tool, the โRFC 3339 / UTC (Z)โ card recalculates the matching moment in UTC for you.
ISO Week Dates and Ordinal Dates
ISO 8601 also defines two alternative ways to name a day:
- Week date โ for example
2026-W27-1. This is the ISO year, the week number (01โ53), and the weekday (1 = Monday โฆ 7 = Sunday). ISO weeks always begin on Monday, and week 1 is the week that contains the year's first Thursday. Around the New Year the ISO year can therefore differ from the calendar year. - Ordinal date โ for example
2026-180. This is the year plus the day-of-year from 001 to 366. It is widely used in aviation, astronomy, and legacy mainframe systems.
How to Use the ISO 8601 Date Formatter
- Pick a date and time: Use the date and time pickers, or click a quick example such as the Unix Epoch or the current moment.
- Choose a UTC offset: Select the offset your time is in โ for example
UTC+00:00,UTC-05:00 (EST), orUTC+05:30 (India). - Read the formats: Every format updates instantly. The anatomy diagram shows how the ISO string is built, and the relative-time line tells you how far the instant is from now.
- Copy what you need: Click the copy button on any card, or โCopy ISO 8601โ under the diagram.
Frequently Asked Questions
What is the ISO 8601 date format?
ISO 8601 is the international standard for representing dates and times. Its extended form looks like 2026-06-29T14:30:00+05:00, written from the largest unit to the smallest: year, month, day, a T separator, then hour, minute, second and the UTC offset. Because the parts are ordered big-to-small, ISO 8601 dates sort correctly as plain text.
What does the Z mean in an ISO 8601 date?
The trailing Z stands for Zulu time, which means UTC with a zero offset. So 2026-06-29T09:00:00Z is exactly the same instant as 2026-06-29T09:00:00+00:00. A date ending in Z is already expressed in UTC and needs no further offset adjustment.
What is the difference between ISO 8601 and RFC 2822?
ISO 8601 (for example 2026-06-29T14:30:00+05:00) is the machine-friendly standard used in JSON, APIs and databases. RFC 2822 (for example Mon, 29 Jun 2026 14:30:00 +0500) is the older human-readable format used in email Date: headers, with the weekday and month spelled out. They describe the same instant in different layouts.
What is a Unix timestamp?
A Unix timestamp is the number of seconds that have elapsed since 1970-01-01 00:00:00 UTC, known as the Unix epoch. It is always measured in UTC, so it is unambiguous worldwide. JavaScript and many APIs use the millisecond version, which is the same value multiplied by 1000.
What is an ISO week date?
An ISO week date such as 2026-W27-1 gives the ISO year, the week number from 01 to 53, and the weekday from 1 (Monday) to 7 (Sunday). ISO weeks always start on Monday, and week 1 is the week containing the year's first Thursday, so the ISO year can differ from the calendar year around New Year.
Does this tool send my dates to a server?
No. The conversion runs entirely in your browser with JavaScript, updating live as you change the date, time or offset. Nothing you type is uploaded, which makes the tool fast and private.
Additional Resources
Reference this content, page, or tool as:
"ISO 8601 Date Formatter" at https://MiniWebtool.com/iso-8601-date-formatter/ from MiniWebtool, https://MiniWebtool.com/
by miniwebtool team. Updated: June 29, 2026
Date Tools:
- Birth Day of the Week Calculator
- Calendar
- ๐ Date Calculator Featured
- Day of the Week Calculator
- Day of the Year Calculator - What Day of the Year Is It Today? Featured
- Day of Year Calendar Featured
- Days Between Two Dates
- Days in Month
- Is it April Fool's Day?
- Is it Christmas?
- ๐ Date Difference Calculator New
- Business Days Calculator New
- Add Business Days to Date New
- Halfway Date Calculator New
- Date Pattern Generator New
- How Long Until Calculator New
- How Long Ago Calculator New
- Lunar Calendar Converter New
- Hijri Calendar Converter New
- Hebrew Calendar Converter New
- Statute of Limitations Calculator New
- Sentence Reduction Calculator New
- Week Number Calculator New
- Anniversary Calculator New
- Half Birthday Calculator New
- Sobriety Calculator New
- Retirement Countdown New
- Date to Roman Numerals Converter New
- World Clock New
- Julian Date Converter New
- ISO 8601 Date Formatter New
- Notice Period Calculator