News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

Unicode characters

Started by aw27, July 16, 2017, 02:01:19 AM

Previous topic - Next topic

nidud

#15
deleted

habran

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. :biggrin:
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)
Cod-Father

jj2007

Quote from: habran on July 18, 2017, 10:29:45 AMIf you use Russian windows than I suppose western characters will be 2 bytes, than that problem would remain unsolved

Which problem? "everything becomes Russian", no need for Western characters :bgrin:

habran

I meant it is nice to be able to use mixed cases on either side 8)
Hopefully it'll work as I expected :greenclp:
Cod-Father

nidud

#19
deleted