Unicode and Bytes Data Type
Learn about the usage of Unicode and bytes datatype to represent text in Python.
We'll cover the following...
Unicode
Unicode is a standard for the representation, encoding, and handling of text expressed in all scripts of the world.
It is a myth that every character in Unicode is two bytes long. Unicode has already exceeded 65536 characters—the maximum number of characters that can be represented using two bytes.
In Unicode, every character is assigned an integer value called a code point, which is usually ...