# LAST1

```
LAST1(strExpr)
```

Anonymize the value and only keep the last character.

Available in:

| Processors | SQL Studio |
| ---------- | ---------- |
| ✓          | ✓          |

*Sample code:*

```sql
USE `kafka`;
SELECT 
  LAST1(first_name) AS first_name_hidden,
  first_name
FROM users-events
LIMIT 1;
```

*Output:*

```json
{
  "value": {
    "first_name_hidden": "*****s",
    "first_name": "Charles"
  }
}
```
