Hi, I have a very strange character encoding error: I am sending a textfield to a script via jQuerys ajax function. Assuming I want to send the euro sign
echo $string;
produces
€
however
echo base64_decode(base64_encode($string));
produces
€
any hints on how I could debug this problem?