SBCs
Single Byte Character Set (SBCS) is a character encoding in which each character is represented by a single byte. In practice, most SBCSs use 8-bit bytes, although ASCII uses only 7 bits; the high bit is either unused or used for extended characters. An SBCS can represent up to 256 distinct characters, of which the first 128 often align with ASCII, while the remaining 128 are used for additional symbols, diacritics, or letters in various languages.
Many SBCSs are defined as code pages, such as ISO/IEC 8859 family and Windows code pages (125x
Advantages: simple, fast encoding and decoding; compact for languages with small alphabets; easy integration with legacy
Limitations: limited to 256 symbols; cannot efficiently encode large character sets (Chinese, Japanese, Korean) without resorting
Context: SBCS is contrasted with MBCS (multi-byte character sets) and DBCS (double-byte character sets) used in