In this video I go over the basics of what bytes are, how to represent them in binary and hexadecimal notation conceptually as well as in the Odin programming language.
As a note the way we could have printed `0xXX` with width two and zero padded is as follows:
```
fmt.printf("%#02x", x)
```