Your example code shows your data coming from a TNT Unicode control. That value will have type `WideString`, so to get UTF-8 data, you should call `Utf8Encode`, which will return an `AnsiString` value. Then call `UrlEncode` on that value. Make sure `UrlEncode`'s input type is `AnsiString` or `Utf8String`. There should be no need to UTF-8-encode the MD5 values since MD5 string values are just hexadecimal characters. However, you should double-check that your `getMd5` function accepts `WideString`. Otherwise, you may be losing data before you ever send it anywhere.