encodingstandaards
Encoding standards specify the rules for converting text characters into sequences of bytes so they can be stored, transmitted, and later reconstructed. They cover both the repertoire of characters (the character set) and the method for encoding those characters into bytes (the encoding form). A given standard also defines how to handle issues such as endianness, control characters, and compatibility with legacy systems.
The most influential framework is Unicode, which seeks to assign a unique code point to every character
Common encodings beyond Unicode include ASCII (a 7-bit subset of Unicode), ISO/IEC 8859 family (Latin-1 and related
Practical considerations include endianness for UTF-16 and UTF-32, the use of byte order marks, and the need