# Chr

### **Description**‌

The Chr function returns the given Unicode character code as a string.

### **Syntax**

‌The syntax for the Chr function is:

`Chr(code)`

#### ‌**Parameters**

code - the Unicode character which is to be returned as a string.

### **Returns**

‌The Chr function returns a string.&#x20;

### **Example**‌

Let's look at some Chr function examples and explore how to use the Chr function.‌

```
Chr(9)
Result: <the TAB character>

Chr(35)
Result: #

Chr (64)
Result: @
```
