# UPPER

UPPER( `text` )

Returns the `text` in uppercase.

### Arguments

| Input  | Description             |
| ------ | ----------------------- |
| `text` | Text to turn uppercase. |

### Output

Outputs uppercase `text`.

```
UPPER("san francisco")
>> "SAN FRANCISCO"
```
