Result
2025-10-04T10:26:11+00:00
About this Tool
Many Date Libraries offer formatting a date into a human-readable string. This is usually done by providing a string of Tokens representing the structure of the date that shall be returned. You can use this tool to quickly see how a string of tokens will turn out the current date with moment.js.
Here are some examples of time formatting strings:
Example | Result |
---|---|
YYYY-MM-DD | 2025-10-04 |
YYYY-MM-DD HH:mm:ss | 2025-10-04 10:26:11 |
YYYY-MM-DD HH:mm:ss.SSS | 2025-10-04 10:26:11.955 |
YYYY-MM-DD HH:mm:ss.SSS A | 2025-10-04 10:26:11.955 AM |
YYYY-MM-DD HH:mm:ss.SSS A Z | 2025-10-04 10:26:11.956 AM +00:00 |
MMMM Do YYYY, h:mm:ss a | October 4th 2025, 10:26:11 am |
dddd | Saturday |
MMM Do YY | Oct 4th 25 |
D.M.YYYY | 4.10.2025 |
h:mm:ss a | 10:26:11 am |
dddd, MMMM Do YYYY, h:mm:ss a | Saturday, October 4th 2025, 10:26:11 am |
YYYY [YYYY escaped text] YYYY | 2025 YYYY escaped text 2025 |
Qo [Quarter] | 4th Quarter |
DDDo [Day of the year] | 277th Day of the year |
Here you find a full list of the available tokens: https://momentjs.com/docs/#/displaying/
This free tool is part of a growing collection of lightweight web utilities crafted by Maxim Mäder to solve everyday computer tasks.