# Ascii

Replaces all non-ASCII characters with their closest ASCII counterparts and removes any unsupported characters completely. This is very useful for converting foreign language strings into something more code-friendly.

```yaml
title: lemoñade
```

::tabs

::tab antlers
```antlers
{{ title | ascii }}
```
::tab blade
```blade
{{ Statamic::modify($title)->ascii() }}
```
::

```html
lemonade
```
