I have a string that I do a
The length of StringBytes is longer than InString
If I do GetBytes("ISO-8859-1") then the lengths are equal.
Why does UTF8 return more bytes?
BobVal
B4X:
Dim InString as String
Dim StringBytes() as Byte = InString.GetBytes("UTF8")
The length of StringBytes is longer than InString
If I do GetBytes("ISO-8859-1") then the lengths are equal.
Why does UTF8 return more bytes?
BobVal