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 | 290 |
%W | Week of year Number | 42 |
%w | Day of Week Number | 6 |
%j | Day of Month with leading Zero | 18 |
%d | Day of Month | 18 |
%D | 3 Letter Day of week | Sat |
%l | Day of week | Saturday |
%m | Month with leading Zero | 10 |
%n | Month | 10 |
%M | 3 letter Month | Oct |
%F | Full Month | October |
%y | Short Year | 25 |
%Y | Full Year | 2025 |
%C | Capitalize everything in the date string | %l%C = SATURDAY |
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 | 12 |
%H | Hour 24h | 12 |
%g | Hour 12h No leading Zero | 12 |
%G | Hour 24h No leading Zero | 12 |
%a | Lowercase Ante or Post meridian | pm |
%A | Uppercase Ante or Post meridian | PM |
%i | Minutes | 26 |
%s | Seconds | 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 | 12:26pm |
%D %j %M | Sat 18 Oct |
%l %d, %M %Y | Saturday 18, Oct 2025 |
%l %d, %M %Y%C | SATURDAY 18, OCT 2025 |
%D %j | Sat 18 |
%H:%i | 12:26 |
%F %d, %Y | October 18, 2025 |
%W/%z | 42/290 |
%h:%i:%s %A | 12:26:59 PM |
%D, %m/%d/%y | Sat, 10/18/25 |
%G:%i | 12:26 |
%w - %l | 6 - Saturday |
%n/%j/%Y | 10/18/2025 |
%M %d%C | OCT 18 |
%h:%i:%s.%a | 12:26:59.pm |