# Obfuscate Email

Obfuscates an email address with special characters making it hard for spam bots to sniff out and scrape off your site. Still reads like an email address as far as readers are concerned.

```yaml
holler: holler@example.com
```

::tabs

::tab antlers
```antlers
{{ holler | obfuscate_email }}
```
::tab blade
{{ Statamic::modify($holler)->obfuscateEmail() }}
::

```html
# output appears as holler@example.com
&#104;o&#108;le&#x72;&#x40;&#x65;&#x78;&#x61;&#109;&#x70;&#108;&#101;&#x2e;&#x63;&#x6f;m
```
