🚧 This website is under construction - Some features might not work as expected 🚧
All my watchfaces support Custom Date and Time formats. This allows you to set up dates and time in a format you want.
These characters can be used to create a custom Date string.
Format | Description | Example |
---|---|---|
%z | Day of year from 01/01 | 214 |
%W | Week of year Number | 12 |
%w | Day of Week Number | 5 |
%j | Day of Month with leading Zero | 09 |
%d | Day of Month | 9 |
%D | 3 Letter Day of week | Fri |
%l | Day of week | Friday |
%m | Month with leading Zero | 05 |
%n | Month | 5 |
%M | 3 letter Month | Feb |
%F | Full Month | February |
%y | Short Year | 26 |
%Y | Full Year | 2026 |
%C | Capitalize everything in the date string | %l%C = FRIDAY |
The following characters can be used to create a time string.
Example: %h:%i%a
will display: 05:59pm
Format | Description | Example |
---|---|---|
%h | Hour 12h | 00-11 |
%H | Hour 24h | 00-23 |
%g | Hour 12h No leading Zero | 0-5 |
%G | Hour 24h No leading Zero | 0-23 |
%a | Lowercase Ante or Post meridian | am or pm |
%A | Uppercase Ante or Post meridian | AM or PM |
%i | Minutes | 01-59 |
%s | Seconds | 01-59 |
Note: You are able to use Time strings inside the custom date fields, but not the other way around.
Code | Output |
---|---|
%h:%i%a | 07:52pm |
%D %j %M | Sat 7 Jun |
%l %d, %M %Y | Saturday 07, Jun 2025 |
%l %d, %M %Y%C | SATURDAY 07, JUN 2025 |
%D %j | Sat 7 |
%H:%i | 19:52 |
%F %d, %Y | June 07, 2025 |
%W/%z | 23/157 |
%h:%i:%s %A | 07:52:59 PM |
%D, %m/%d/%y | Sat, 06/07/25 |
%G:%i | 19:52 |
%w - %l | 6 - Saturday |
%n/%j/%Y | 6/7/2025 |
%M %d%C | JUN 07 |
%h:%i:%s.%a | 07:52:59.pm |