International standards for dates and times
Factsheet
Date in UTC 2026-04-05
Time in UTC 14:17:29Z
T141729Z
T141729Z
Date and time
in UTC 2026-04-05T14:17:29Z
20260405T141729Z
20260405T141729Z
Date in UTC 2026-04-05
Time in UTC 14:17:29Z
T141729Z
T141729Z
Date and time
in UTC 2026-04-05T14:17:29Z
20260405T141729Z
20260405T141729Z
Wikipedia
en.wikipedia.org › wiki › ISO_8601
ISO 8601 - Wikipedia
2 days ago - ISO 8601 applies to these representations and formats: dates, in the Gregorian calendar (including the proleptic Gregorian calendar); times, based on the 24-hour timekeeping system, with optional UTC offset, time intervals, and combinations thereof. The standard does not assign specific meaning to any element of the dates/times represented: the meaning of any element depends on the context of its use.
Videos
16:47
Working with ISO 8601 Date time format and duration values - YouTube
07:01
Format date time to ISO 8601 standard using Power Automate | ...
16:18
How to Switch Microsoft Windows to ISO 8601 Standard Date Format ...
17:00
How to Switch Microsoft Excel to ISO 8601 Standard Date Format ...
12:02
ISO 8601 - Date and Time - YouTube
01:00
Which one to use: ISO 8601 or UNIX format for date and time? #Shorts ...
What datetime formats are supported?
Timezone Hub supports ISO 8601, RFC3339, Unix timestamps (seconds and milliseconds), and custom datetime formats. You can also use human-readable formats for easy copying.
timezonehub.dev
timezonehub.dev › utc › iso
Timezone Hub - Convert & Format Datetimes Instantly
Can I convert timezones in Excel or CSV files?
Yes! Use the Spreadsheet tab to upload CSV or Excel files. Specify the column containing timestamps, select source and target timezones, and download the converted file. All processing happens in your browser for privacy.
timezonehub.dev
timezonehub.dev › utc › iso
Timezone Hub - Convert & Format Datetimes Instantly
How do I convert timezones?
Use Timezone Hub's Converter tab to convert times between any two timezones. Select your source and target timezones, enter a datetime, and get instant conversion. Supports ISO 8601, RFC3339, Unix timestamps, and custom formats.
timezonehub.dev
timezonehub.dev › utc › iso
Timezone Hub - Convert & Format Datetimes Instantly
Digi
docs.digi.com › resources › documentation › digidocs › 90001488-13 › reference › r_iso_8601_date_format.htm
ISO 8601 date format
Every component shown in the example below must be present when expressing a date in ISO 8601 format; this includes all punctuation characters and the "T" character. Within a string, the "T" indicates the beginning of the time element (directly following the date element).
Spring
docs.spring.io › spring-framework › docs › current › javadoc-api › org › springframework › format › annotation › DateTimeFormat.ISO.html
DateTimeFormat.ISO (Spring Framework 7.0.5 API)
The most common ISO Date Time Format yyyy-MM-dd'T'HH:mm:ss.SSSXXX — for example, "2000-10-31T01:30:00.000-05:00". public static final DateTimeFormat.ISO NONE · Indicates that no ISO-based format pattern should be applied. public static DateTimeFormat.ISO[] values() Returns an array containing ...
Medium
medium.com › towardsdev › iso-8601-1-understanding-date-and-time-formatting-f8dd70e89552
ISO 8601–1: Understanding Date and Time Formatting
March 5, 2025 - import java.time.ZonedDateTime import java.time.format.DateTimeFormatter fun main() { val now = ZonedDateTime.now() val formattedDate = now.format(DateTimeFormatter.ISO_OFFSET_DATE_TIME) println("Formatted Date-Time: $formattedDate") } // Sample Output // Formatted Date-Time: 2025-03-04T09:59:56.832948787Z
Microsoft Learn
learn.microsoft.com › en-us › dotnet › standard › base-types › standard-date-and-time-format-strings
Standard date and time format strings - .NET | Microsoft Learn
May 2, 2023 - For TimeOnly values, it produces a time-only ISO 8601 string in the format "HH:mm:ss.fffffff". The "O" or "o" standard format specifier corresponds to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffK" custom format string for DateTime values and to the "yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fffffffzzz" custom format string for DateTimeOffset values.
Top answer 1 of 6
106
The second argument of date is a UNIX timestamp, not a database timestamp string.
You need to convert your database timestamp with strtotime.
<?= date("c", strtotime($post[3])) ?>
2 of 6
50
Using the DateTime class available in PHP version 5.2 it would be done like this:
$datetime = new DateTime('17 Oct 2008');
echo $datetime->format('c');
As of PHP 5.4 you can do this as a one-liner:
echo (new DateTime('17 Oct 2008'))->format('c');
SAS
documentation.sas.com › doc › en › leforinforref › 9.4 › p1a0qt18rxydrkn1b0rtdfh2t8zs.htm
Basic ISO 8601 Date, Time, and Datetime Values
January 15, 2026 - Get access to My SAS, trials, communities and more
Oracle
docs.oracle.com › en › database › oracle › oracle-database › 21 › adjsn › iso-8601-date-time-and-duration-support.html
ISO 8601 Date, Time, and Duration Support
December 6, 2022 - International Standards Organization (ISO) standard 8601 describes an internationally accepted way to represent dates, times, and durations. Oracle Database supports the most common ISO 8601 formats as proper Oracle SQL date, time, and interval (duration) values.
SAS
documentation.sas.com › doc › en › pgmsascdc › v_066 › leforinforref › p1a0qt18rxydrkn1b0rtdfh2t8zs.htm
Working with Dates and Times by Using the ISO 8601 ...
Get access to My SAS, trials, communities and more
W3C
w3.org › TR › NOTE-datetime
Date and Time Formats
This profile defines a few date/time formats, likely to satisfy most requirements. The International Standard for the representation of dates and times is ISO 8601. Its full reference number is ISO 8601 : 1988 (E), and its title is "Data elements and interchange formats - Information interchange ...
Srcco
srcco.de › posts › date-formats-iso-8601.html
Date Formats: ISO 8601 | SRCco.de
June 30, 2020 - For Python programmers: the Python standard library supports parsing and formatting ISO date/time natively since Python 3.7: import datetime # dates d = datetime.date.fromisoformat("2020-06-30") d.isoformat() # => 2020-06-30 # date/time (without timezone) dt = datetime.datetime.fromisoformat("2020-06-30T20:41:26.538088") dt.isoformat() # => 2020-06-30T20:41:26.538088 ·
MDN Web Docs
developer.mozilla.org › en-US › docs › Web › JavaScript › Reference › Global_Objects › Date
Date - JavaScript | MDN
toISOString() returns a string in the format 1970-01-01T00:00:00.000Z (the date time string format introduced above, which is simplified ISO 8601).