Result
2025-11-19T03:35:41+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-11-19 |
| YYYY-MM-DD HH:mm:ss | 2025-11-19 03:35:41 |
| YYYY-MM-DD HH:mm:ss.SSS | 2025-11-19 03:35:41.049 |
| YYYY-MM-DD HH:mm:ss.SSS A | 2025-11-19 03:35:41.049 AM |
| YYYY-MM-DD HH:mm:ss.SSS A Z | 2025-11-19 03:35:41.049 AM +00:00 |
| MMMM Do YYYY, h:mm:ss a | November 19th 2025, 3:35:41 am |
| dddd | Wednesday |
| MMM Do YY | Nov 19th 25 |
| D.M.YYYY | 19.11.2025 |
| h:mm:ss a | 3:35:41 am |
| dddd, MMMM Do YYYY, h:mm:ss a | Wednesday, November 19th 2025, 3:35:41 am |
| YYYY [YYYY escaped text] YYYY | 2025 YYYY escaped text 2025 |
| Qo [Quarter] | 4th Quarter |
| DDDo [Day of the year] | 323rd 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.