Which is the first multi-byte UTF codepoint?

258 Views Asked by At

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?

1

There are 1 best solutions below

0
On BEST ANSWER

In UTF-8, the last single-byte code point is U+007F, and first 2-byte code point is U+0080.

See https://en.wikipedia.org/wiki/UTF-8#Encoding