Congratulations on learning more about character encodings! In this lesson, youâll cover a few caveats to remember when youâre working with encodings and see some resources you can check out to keep learning.
In this course, you learned about:
- Fundamental concepts of character encodings and numbering systems
- Integer, binary, octal, hex, str, and bytes literals in Python
- Differences between Unicode code points and UTF-8 encoding
- Pythonâs built-in functions related to character encoding and numbering systems
- Other encoding formats included in Pythonâs Standard Library
Itâs very important to know the encoding of any data you read. Using the wrong encoding may result in an exception, or worse it will read successfully but have the wrong content.
Wikipedia has some useful pages:

Alain Rouleau on July 2, 2020
Very interesting, thanks!