# Lcfirst

Converts the first character of the supplied string to lower case.

```yaml
title: Wow
```

::tabs

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

```html
wow
```
