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`. So, something like this:

    var
      data, date, username, passhash, datahash, note: AnsiString;
    
    date := FormatDateTime('yyyymmddhh:nn',now);
    username := Utf8Encode(edtUserName.Text);
    passhash := getMd51(edtPassword.Text);
    datahash := getMd51(data);
    note := Utf8Encode(memoNote.Text);
    data := Format('date=%s&username=%s&password=%s&hash=%s&note=%s&action=%s',
                   [UrlEncode(date),
                    UrlEncode(username),
                    UrlEncode(passhash),
                    UrlEncode(datahash),
                    UrlEncode(note),
                    'i'
                   ]);

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 `getMd51` function accepts `WideString`. Otherwise, you may be losing data before you ever send it anywhere.

Next, you have the issue of receiving UTF-8 data in PHP. I expect there's nothing special you need to do there or in MySQL. Whatever you store, you should get back identically later. Send that back to your Delphi program, and decode the UTF-8 data back into a `WideString`.

In other words, your Unicode data *will* look different in your database because you're storing it as UTF-8. In your database, you're seeing UTF-8-encoded data, but in your TNT controls, you're seeing the regular Unicode characters.