Character encoding with UDP

Has anyone successfully sent utf8 messages with EasyUDPSocket? I have an application that needs to send accented characters but so far I’ve not been able to manaage it despite fiddling around endlessly with encodings and conversions.

Make sure when you read the data you aren’t splitting the bytes that make up a multibyte UTF-8 character into several separate ones. Make sure when you read the bytes and put it into a string you define the encoding.

Thanks, I finally managed it after trying just about every possible conversion option. :slight_smile:

But this should not require “conversion”

DefineEncoding perhaps