> 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/general-programming-concepts.md).

# General Programming Concepts

## ASCII & UTF-8 & UTF-32

* Developed firstly that maps characters 1 to 1 with bytes&#x20;

### `Lowercase characters` have a higher code point than `Higher case characters`

```python
print('a' < 'A') # prints False
print('A' < 'a') # prints True
```

* [Explanation video](https://www.youtube.com/watch?v=ut74oHojxqo)
