Reputation: 87
I know UNICODE character set follows the UTF encoding style. But does ASCII character set follow any encoding style?
Upvotes: 0
Views: 372
Reputation: 465
Unicode, formally, is the Standard. It can be implemented by different character encodings. The Unicode standard defines Unicode Transformation Formats (UTF): UTF-8, UTF-16, and UTF-32, and several other encodings. UTF-8 uses one to four bytes per code point and, being compact for Latin scripts and ASCII-compatible. The first 128 code points represent the ASCII characters, which means that any ASCII text is also a UTF-8 text.
Upvotes: 1