> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fourthwall.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Utility Filters

> Date formatting

| Filter | Description      | Example                                         |
| ------ | ---------------- | ----------------------------------------------- |
| `date` | Format date/time | `{{ product.created_at \| date: '%B %d, %Y' }}` |

## date

Formats dates using `strftime` syntax in the shop's timezone.

```liquid theme={null}
{{ product.created_at | date: '%B %d, %Y' }}
<!-- Output: January 15, 2025 -->

{{ product.published_at | date: '%m/%d/%Y' }}
<!-- Output: 01/15/2025 -->
```
