🚧 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 | 06:17pm |
%D %j %M | Sat 19 Apr |
%l %d, %M %Y | Saturday 19, Apr 2025 |
%l %d, %M %Y%C | SATURDAY 19, APR 2025 |
%D %j | Sat 19 |
%H:%i | 18:17 |
%F %d, %Y | April 19, 2025 |
%W/%z | 16/108 |
%h:%i:%s %A | 06:17:34 PM |
%D, %m/%d/%y | Sat, 04/19/25 |
%G:%i | 18:17 |
%w - %l | 6 - Saturday |
%n/%j/%Y | 4/19/2025 |
%M %d%C | APR 19 |
%h:%i:%s.%a | 06:17:34.pm |