Date and Time Formats Used in HTML - HTML - HyperText Markup Language - MDN
Date and Time Formats Used in HTML - HTML - HyperText Markup Language - MDN
For <input> , the values of type that return a value which contains a string representing a
date and/or time are:
date
datetime
datetime-local
month
time
week
Examples
Before getting into the intricacies of how date and time strings are written and parsed in HTML,
here are some examples that should give you a good idea what the more commonly-used date
and time string formats look like.
https://developer.mozilla.org/en-US/docs/Web/HTML/Date_and_time_formats 1/10
03/01/2021 Date and time formats used in HTML - HTML: HyperText Markup Language | MDN
0033-08-04T03:40
String 3:40
Date AM on August
and/or time 4, 33 [details]
Basics
Before looking at the various formats of date and time related strings used by HTML elements,
it is helpful to understand a few fundamental facts about the way they're defined. HTML uses a
variation of the ISO 8601 standard for its date and time strings. It's worth reviewing the
descriptions of the formats you're using in order to ensure that your strings are in fact
compatible with HTML, as the HTML specification includes algorithms for parsing these strings
that is actually more precise than ISO 8601, so there can be subtle differences in how date
and time strings are expected to look.
Character set
Dates and times in HTML are always strings which use the ASCII character set.
Year numbers
In order to simplify the basic format used for date strings in HTML, the specification requires
that all years be given using the modern (or proleptic) Gregorian calendar. While user
interfaces may allow entry of dates using other calendars, the underlying value always uses
the Gregorian calendar.
While the Gregorian calendar wasn't created until the year 1582 (replacing the similar Julian
calendar), for HTML's purposes, the Gregorian calendar is extended back to the year 1 C.E.
Make sure any older dates account for this.
https://developer.mozilla.org/en-US/docs/Web/HTML/Date_and_time_formats 2/10
03/01/2021 Date and time formats used in HTML - HTML: HyperText Markup Language | MDN
For the purposes of HTML dates, years are always at least four digits long; years prior to the
year 1000 are padded with leading zeroes (" 0 "), so the year 72 is written as 0072 . Years prior
to the year 1 C.E. are not supported, so HTML doesn't support years 1 B.C.E. (1 B.C.) or
earlier.
Leap years
A leap year is any year which is divisible by 400 or the year is divisible by 4 but not by 100.
Although the calendar year is normally 365 days long, it actually takes the planet Earth
approximately 365.2422 days to complete a single orbit around the sun. Leap years help to
adjust the calendar to keep it synchronized with the actual position of the planet in its orbit.
Adding a day to the year every four years essentially makes the average year 365.25 days
long, which is close to correct.
The adjustments to the algorithm (taking a leap year when the year can be divided by 400, and
skipping leap years when the year is divisible by 100) help to bring the average even closer to
the correct number of days (365.2425 days). Scientists occasionally add leap seconds to the
calendar (seriously) to handle the remaining three ten-thousandths of a day and to
compensate for the gradual, naturally occurring slowing of Earth's rotation.
While month 02 , February, normally has 28 days, it has 29 days in leap years.
There are 12 months in the year, numbered 1 through 12. They are always represented by a
two-digit ASCII string whose value ranges from 01 through 12 . See the table in the section
Days of the month for the month numbers and their corresponding names (and lengths in
days).
Month numbers 1, 3, 5, 7, 8, 10, and 12 are 31 days long. Months 4, 6, 9, and 11 are 30 days
long. Month 2, February, is 28 days long most years, but is 29 days long in leap years. This is
detailed in the following table.
https://developer.mozilla.org/en-US/docs/Web/HTML/Date_and_time_formats 3/10
03/01/2021 Date and time formats used in HTML - HTML: HyperText Markup Language | MDN
01 January 31
03 March 31
04 April 30
05 May 31
06 June 30
07 July 31
o8 August 31
09 September 30
10 October 31
11 November 30
12 December 31
Week strings
A week string specifies a week within a particular year. A valid week string consists of a valid
year number, followed by a hyphen character (" - ", or U+002D), then the capital letter " W "
(U+0057), followed by a two-digit week of the year value.
The week of the year is a two digit string between 01 and 53 Each week begins on Monday
https://developer.mozilla.org/en-US/docs/Web/HTML/Date_and_time_formats 4/10
03/01/2021 Date and time formats used in HTML - HTML: HyperText Markup Language | MDN
The week of the year is a two-digit string between 01 and 53 . Each week begins on Monday
and ends on Sunday. That means it's possible for the first few days of January to be
considered part of the previous week-year, and for the last few days of December to be
considered part of the following week-year. The first week of the year is the week that conains
the first Thursday of the year. For example, the first Thursday of 1953 was on January 1, so
that week—beginning on Monday, December 29—is considered the first week of the year.
Therefore, December 30, 1952 occurs during the week 1953-W01 .
Note that both the year and week numbers are padded with leading zeroes, with the year
padded to four digits and the week to two.
Month strings
A month string represents a specific month in time rather than a generic month of the year
https://developer.mozilla.org/en-US/docs/Web/HTML/Date_and_time_formats 5/10
03/01/2021 Date and time formats used in HTML - HTML: HyperText Markup Language | MDN
A month string represents a specific month in time, rather than a generic month of the year.
That is, rather than representing "January," an HTML month string represents a month and
year paired, like "January 1972."
A valid month string consists of a valid year number (a string of at least four digits), followed
by a hyphen character (" - ", or U+002D), followed by a two-digit numeric month number,
Notice that all years are at least four characters long; years that are fewer than four digits long
are padded with leading zeroes.
Date strings
A valid date string consists of a month string, followed by a hyphen character (" - ", or
U+002D), followed by a two-digit day of the month.
https://developer.mozilla.org/en-US/docs/Web/HTML/Date_and_time_formats 6/10
03/01/2021 Date and time formats used in HTML - HTML: HyperText Markup Language | MDN
0062-02-05 February 5, 62
Time strings
A time string can specify a time with precision to the minute, second, or to the millisecond.
Specifying only the hour or minute isn't permitted. A valid time string minimally consists of a
two-digit hour followed by a colon (" : ", U+003A), then a two-digit minute. The minute may
optionally be followed by another colon and a two-digit number of seconds. Milliseconds may
be specified, optionally, by adding a decimal point character (" . ", U+002E) followed by one,
two, or three digits.
The hour is always specified using the 24-hour clock, with 00 being midnight and 11 PM
being 23 . No values outside the range 00 – 23 are permitted.
The minute must be a two-digit number between 00 and 59 . No values outside that
range are allowed.
If the number of seconds is omitted (to specify a time accurate only to the minute), no
colon should follow the number of minutes.
If specified, the integer portion of the number of seconds must be between 00 and 59 .
You cannot specify leap seconds by using values like 60 or 61 .
If the number of seconds is specified and is an integer, it must not be followed by a
decimal point.
If a fraction of a second is included, it may be from one to three digits long, indicating the
number of milliseconds. It follows the decimal point placed after the seconds component
of the time string.
12:15 12:15 PM
https://developer.mozilla.org/en-US/docs/Web/HTML/Date_and_time_formats 7/10
03/01/2021 Date and time formats used in HTML - HTML: HyperText Markup Language | MDN
12:15 12:15 PM
Time string Time
13:44:25 1:44:25 PM (25 seconds after 1:44 PM)
When you set the value of a datetime-local input, the string is normalized into a
standard form. Normalized datetime strings always use the letter " T " to separate the date
and the time, and the time portion of the string is as short as possible. This is done by leaving
out the seconds component if its value is :00 .
1. Notice that after normalization, this is the same string as the previous datetime-local
string. The space has been replaced with the " T " character and the trailing zero in the
fraction of a second has been removed to make the string as short as possible.
2. Note that the normalized form of this date drops the " :00 " indicating the number of
seconds to be zero, because the seconds are optional when zero, and the normalized
string minimizes the length of the string.
A time zone offset string specifies the offset in either a positive or a negative number of hours
and minutes from the standard time base. There are two standard time bases, which are very
close to the same, but not exactly the same:
For dates after the establishment of Coordinated Universal Time (UTC) in the early
1960s, the time base is Z and the offset indicates a particular time zone's offset from the
time at the prime meridian at 0º longitude (which passes through the Royal Observatory
at Greenwich, England).
For dates prior to UTC, the time base is instead expressed in terms of UT1, which is the
contemporary Earth solar time at the prime meridian.
The time zone string is appended immediately following the time in the date and time string.
You can specify " Z " as the time zone offset string to indicate that the time is specified in UTC.
Otherwise, the time zone string is constructed as follows:
1. A character indicating the sign of the offset: the plus character (" + ", or U+002B) for time
zones to the east of the prime meridian or the minus character (" - ", or U+002D) for time
zones to the west of the prime meridian.
2. A two-digit number of hours that the time zone is offset from the prime meridian. This
value must be between 00 and 23 .
3. An optional colon (" : ") character.
4. A two-digit number of minutes past the hour; this value must be between 00 and 59 .
While this format allows for time zones between -23:59 and +23:59, the current range of time
zone offsets is -12:00 to +14:00, and no time zones are currently offset from the hour by
anything other than 00 , 30 , or 45 minutes. This may change at more or less anytime, since
countries are free to tamper with their time zones at any time and in any way they wish to do
so.
1789-08-
August 22, 1789 at a tenth of a second past August 22, 1789 at a tenth of
22T12:30:00.1-
12:30 PM Eastern Daylight Time (EDT) a second past 4:30 PM
04:00
3755-01-01 January 1, 3755 at midnight Australian Eastern December 31, 3754 at 2:00
00:00+10:00 Standard Time (AEST) PM
See also
<input>
<ins> and <del> : see the datetime attribute, which specifies either a date or a local
date and time at which the content was inserted or deleted
The ISO 8601 specification
Numbers and Dates in the JavaScript Guide
The JavaScript Date object
The Intl.DateTimeFormat object for formatting dates and times for a given locale
https://developer.mozilla.org/en-US/docs/Web/HTML/Date_and_time_formats 10/10