UnicodeEncodierungen
UnicodeEncodierungen, often shortened to encodings, are methods for representing Unicode characters as a sequence of bytes. Unicode itself is a standard that assigns a unique number, called a code point, to every character used in modern computing. However, computers store information as bytes, so these code points need to be translated into a byte representation.
Several Unicode encodings exist, each with its own advantages and disadvantages. The most common is UTF-8. UTF-8
Another widely used encoding is UTF-16. UTF-16 is also a variable-width encoding, typically using two bytes for
UTF-32 is a fixed-width encoding, meaning every Unicode character is represented using exactly four bytes. This