(ë, Ã, ì, ù, Ã) in normal charaters?

i use utf8 for header page, and mysql encode

link|improve this question

65% accept rate
You need to add more context. Where do these characters show up, what encoding are your tables in, what does the code look like to retrieve the data.... – Pekka Feb 26 '11 at 15:28
3  
These are UTF-8 sequences when displayed on a Latin-1 charset website. The best option is to add <meta charset="UTF-8"> to your pages, or use header("Content-Type: text/html; charset=utf-8"); on top of your PHP scripts. I assume this isn't actually the case yet. – mario Feb 26 '11 at 15:37
feedback

2 Answers

If you see those characters you probably just didn’t specify the character encoding properly. Because those characters are the result when an UTF-8 multi-byte string is interpreted with a single-byte encoding like ISO 8859-1 or Windows-1252.

In this case ë could be encoded with 0xC3 0xAB that represents the Unicode character ë (U+00EB) in UTF-8.

link|improve this answer
how encoded with 0xC3 0xAB that represents the Unicode character ë (U+00EB) in UTF-8 ?? – Leonardo Apr 5 '11 at 21:24
The character ë has the code point 0xEB in the Unicode character set and is encoded with 0xC3AB in UTF-8. But this byte sequence does represent something different when interpreted with a different character encoding. For example, in ISO 8859-1 and Windows-1252 it represents the two characters à (0xC3) and « (0xAB). – Gumbo Apr 6 '11 at 8:09
feedback

These are utf-8 encoded characters. Use utf8_decode() to convert them to normal ISO-8859-1 characters.

link|improve this answer
1  
This may happen to fix the problem at hand, but it is much, much better to get all encodings in the process right in the first place. – Pekka Feb 26 '11 at 15:30
1  
I always use utf8_encode() (and mysql_real_escape_string of course) when sending a string to database. At the output page is use utf8_decode(). But you say that's wrong, I didn't know that, how would you deal with this? – Ray Feb 26 '11 at 15:33
1  
utf8_encode() and utf8_decode convert data from and to ISO-8859-1. In a modern web site setup where the database, the database connection, and the output page encoding are UTF-8, it will not be necessary to do those conversions any more. That is the recommended way when building PHP projects from scratch. While it would probably fix the problem the OP shows, fixing the problem at its root (if possible) is much preferable. – Pekka Feb 26 '11 at 15:44
@Pekka Thanks, i'll keep it in mind! – Ray Feb 26 '11 at 15:46
feedback

Your Answer

 
or
required, but never shown

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