Template:FULLDATE
Appearance
October 31, 2024
{{FULLDATE}} returns the full or short English date at current time (UTC time, as set on the Wikipedia server).
Usage
- The
type
parameter is optional and can be any of:- dmy: display the current day of month, month name, and year
- short: display the current month name and day of month
- medium: display the current month name, day of month, and year (default)
- long: display the current month name, day of month, year, and UTC time
- rfc-2822: displays the time in rfc-2822 format
- iso-8601: displays the time in iso-8601 format
- wiki: displays the time in wiki format
- The
time
parameter is optional, and can be used to get a date of other reference (like yesterday, today, tomorrow etc..) Do not use dates before 1970-01-02.
Examples
Code | Result |
---|---|
{{FULLDATE}}
|
October 31, 2024 |
{{FULLDATE|type=dmy}}
|
31 October 2024 |
{{FULLDATE|type=short}}
|
October 31 |
{{FULLDATE|type=shortish}}
|
Oct. 31, 2024 |
{{FULLDATE|type=medium}}
|
October 31, 2024 |
{{FULLDATE|type=long}}
|
October 31, 2024 23:21:11 |
{{FULLDATE|type=day}}
|
Thursday, 31 October 2024 |
{{FULLDATE|type=longer}}
|
Thursday, 31 October 2024 23:21:11 (UTC) |
{{FULLDATE|type=rfc-2822}}
|
Thu, 31 Oct 2024 23:21:11 +0000 |
{{FULLDATE|type=iso-8601}}
|
2024-10-31T23:21:11+00:00 |
{{FULLDATE|type=wiki}}
|
23:21:11, 31 October 2024 (UTC) |
{{FULLDATE|type=date}}
|
2024-10-31 |
{{FULLDATE|type=date|time=yesterday}}
|
2024-10-30 |
{{FULLDATE|type=date|time=today}}
|
2024-10-31 |
{{FULLDATE|type=date|time=tomorrow}}
|
2024-11-01 |
{{FULLDATE|type=date|time=1970-01-02}}
|
1970-01-02 |
{{FULLDATE|type=date|time=1970-12-31}}
|
1970-12-31 |
{{FULLDATE|type=iso-8601|time=1970-01-01 00:00:01}}
|
1970-01-01T00:00:01+00:00 |
See also
- Help:Magic words for {{CURRENTDAY}}, etc.