For example there is a field called username, and the username is Some.body™. I have encoded the form via libURLFormData but the end result, the username goes to be like Some.body%99 but when I try to debug it in a browser, what the browser sends is like this Some.body%E2%84%A2... So in short let me put some short example below.
Encoded string LiveCode sends: Some.body%99 = Rejected by remote server.
Encoded string that browser sends: Some.body%E2%84%A2 = Accepted by remote server.
So I want it to be like the one browser sends but I don't know how.

Sorry for the english, I'm not really good with english.
UPDATE:
Okay, I got it to work by using
Code: Select all
uniDecode(the unicodeText of fld "username","utf8")