Result
2025-07-19T01:09:48+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-07-19 |
YYYY-MM-DD HH:mm:ss | 2025-07-19 01:09:48 |
YYYY-MM-DD HH:mm:ss.SSS | 2025-07-19 01:09:48.283 |
YYYY-MM-DD HH:mm:ss.SSS A | 2025-07-19 01:09:48.283 AM |
YYYY-MM-DD HH:mm:ss.SSS A Z | 2025-07-19 01:09:48.283 AM +00:00 |
MMMM Do YYYY, h:mm:ss a | July 19th 2025, 1:09:48 am |
dddd | Saturday |
MMM Do YY | Jul 19th 25 |
D.M.YYYY | 19.7.2025 |
h:mm:ss a | 1:09:48 am |
dddd, MMMM Do YYYY, h:mm:ss a | Saturday, July 19th 2025, 1:09:48 am |
YYYY [YYYY escaped text] YYYY | 2025 YYYY escaped text 2025 |
Qo [Quarter] | 3rd Quarter |
DDDo [Day of the year] | 200th 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.