On 02Aug22 16:04+0700, Đoàn Trần Công Danh wrote: > On 2022-08-02 10:06:08+0200, Bastian <bastian-muttu...@t6l.de> wrote: > > υ 0x3C5 > > % 0xFF05 > > e 0xFF45 > > ム 0x30E0 > > 加 0x52A0 > > > > So only the last matches your description 'last byte is A0' > > I think he meant the last byte of their utf-8 representation: > Which means: υ 0x3C5 is 0xCF 0x85 which is ended with 0x85.
Thanks. TIL some more about utf8. When the pointer is ontop of a cahracter, vim shows me the character value as '0x3C5', which is the 'unicode code point'. On the utf8 chartable it is noted as U+03C5 and the according utf8 hex is 0xcf85. -- Bastian