Hi,
I am sending some strings such as:
ã, á, é
over the network using zeromq. Zeromq expects utf8strings. Typecast did not work:
UTF8string(ã)
Any suggestions on how to fix this??PS.: Sorry, but this requires some clarification. The problem is nothing related to send-receive. Sorry again.
Hi,
I am sending some strings such as:
ã, á, é
over the network using zeromq. Zeromq expects utf8strings and everything is ok sending and receiving them. However, I think I am concatenating them wrongly:
Caption := Utf8String1 +'ã';
Returns a caption with strange characters.
Any suggestions on how to fix this??
Edit.:
Found a solution:
Button1.Caption := Utf8String1+SysToUtf8('ã');