> For the complete documentation index, see [llms.txt](https://docs.arkannis.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.arkannis.net/programming/python/classic-python/ord-chr.md).

# ord(), chr()

Gives a string representing one Unicode character, return an integer represeting the unicode code point of that character

### ! only takes signle characters

Example:

```
ord('a') # Returns integer 97
```

### This is the inverse of chr()

```
chr(97) # Returns character 'a'
```
