ByteLen() and Unicode
Posted: Sat May 04, 2019 3:03 pm
Under Windows10 x64:
Normally, the result should be 4 bytes.
According to ByteLen, a$ is only 1 byte in size.
Code: Select all
SetDefaultEncoding(#ENCODING_UTF8, #ENCODING_UTF8)
a$ = "H"
DebugPrint(ByteLen(a$))According to ByteLen, a$ is only 1 byte in size.