Hi Nidud,
I think we have solved that problem in next release
If you use Russian windows than I suppose western characters will be 2 bytes, than that problem would remain unsolved
This way both can be used at the same time
we can cover first 3 UTF-8 cases:
1.) 00 to 7F hex (0 to 127): first and only byte of a sequence.
2.) 80 to BF hex (128 to 191): continuing byte in a multi-byte sequence.
3.) C2 to DF hex (194 to 223): first byte of a two-byte sequence.
4.)
E0 to EF hex (224 to 239): first byte of a three-byte sequence.5.)
F0 to FF hex (240 to 255): first byte of a four-byte sequence.We hope it'll works as expected, we'll see.

Addition that we've added doesn't affect normal cases only above 7Fh
Hopefully, Johnsa will upload it today, if he get some spare time 8)