Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
3  
This is not a real world example though, is it? You are encoding it in one page, and decoding it in another, aren't you? In that case, you need to tell us which character set those pages use. – Pekka 웃 Aug 9 '10 at 12:01
1  
I don't believe you. base64_decode(base64_encode($string)) should give alays $string back. – Artefacto Aug 9 '10 at 12:04
there must be some issue with charset, i don't remember exactly – Jigar Joshi Aug 9 '10 at 12:08
Well, in UTF-8 "€" is represented as "e282ac", and "€" is represented as "e23fac" in ISO-8859-15. So, you're changing changing the data somewhere. – Artefacto Aug 9 '10 at 12:13

1 Answer

up vote 0 down vote accepted

This is not a real world example though, is it? You are encoding it in one page, and decoding it in another, aren't you? In that case, you need to tell us which character set those pages use.

Pekka was right, my charsets got mixed up, after I set a global UTF8 charset header, everything works fine.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.