The PHP stores strings as a series of bytes. If you see the binary data with the wrong encoding, then this artifact will appear. Instead make sure that your page has a proper Unicode encoding, something like:
<head>
<meta charset="UTF-8">
</head>
The PHP side:
header('Content-type: text/plain; charset=utf-8');
I hope this helps you.