Result
2026-02-12T18:10:13+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 | 2026-02-12 |
| YYYY-MM-DD HH:mm:ss | 2026-02-12 18:10:13 |
| YYYY-MM-DD HH:mm:ss.SSS | 2026-02-12 18:10:13.729 |
| YYYY-MM-DD HH:mm:ss.SSS A | 2026-02-12 18:10:13.729 PM |
| YYYY-MM-DD HH:mm:ss.SSS A Z | 2026-02-12 18:10:13.729 PM +00:00 |
| MMMM Do YYYY, h:mm:ss a | February 12th 2026, 6:10:13 pm |
| dddd | Thursday |
| MMM Do YY | Feb 12th 26 |
| D.M.YYYY | 12.2.2026 |
| h:mm:ss a | 6:10:13 pm |
| dddd, MMMM Do YYYY, h:mm:ss a | Thursday, February 12th 2026, 6:10:13 pm |
| YYYY [YYYY escaped text] YYYY | 2026 YYYY escaped text 2026 |
| Qo [Quarter] | 1st Quarter |
| DDDo [Day of the year] | 43rd 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.