I just wanted to know which unicode blocks can be safely used when being limited to single-byte codepoints only.
So, which is the last single-byte codepoint, and which is the first multi-byte codepoint?
I just wanted to know which unicode blocks can be safely used when being limited to single-byte codepoints only.
So, which is the last single-byte codepoint, and which is the first multi-byte codepoint?
In UTF-8, the last single-byte code point is
U+007F
, and first 2-byte code point isU+0080
.See https://en.wikipedia.org/wiki/UTF-8#Encoding