Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
UTF-8 使用一种编码,其中第一个字节的前导一位数是符号使用的字节数的计数(单字节字符除外):
0xxxxxxx - 1 byte sequence 110xxxxx - 2 byte sequence 1110xxxx - 3 byte sequence 11110xxx - 4 byte sequence ...
忽略单字节情况,这种编码技术是否有类似/先前的用途?它有名字吗?
根据Wikipedia,使用的名称似乎是“连续字节”。
使用连续位的替代方法用于可变长度整数。
本专利申请讨论了许多方法,包括这两种方法(大概在提供更好的替代方案之前)。