vote up 1 vote down star

Hello!

I want to output the following string in PHP:

ä ö ü ß €

Therefore, I've encoded it to utf8 manually:

ä ö ü ß €

So my script is:

<?php
header('content-type: text/html; charset=utf-8');
echo 'ä ö ü ß €';
?>

The first 4 characters are correct (ä ö ü ß) but unfortunately the € sign isn't correct:

ä ö ü ß €

Here you can see it.

Can you tell me what I've done wrong? My editor (Notepad++) has settings for Encoding (Ansi/UTF-8) and Format (Windows/Unix). Do I have to change them?

I hope you can help me. Thanks in advance!

flag

3  
You should use an editor that supports UTF-8. What you did is just use ISO 8859-1 to write the code words of UTF-8. Using UTF-8 you could write ä ö ü ß € directly. – Gumbo Sep 7 at 10:27
1  
Ah, sorry, it’s Windows-1252 instead of ISO 8895-1 – Gumbo Sep 7 at 10:29
Careful, though, that using UTF-8 might insert U+FEFF at the beginning of the file. And PHP doesn't like that at all. – Johannes Rössel Sep 7 at 10:35
@Johannes -- I've never had problems with this. What problems with UTF-8 encoded files did you have? – warpech Sep 7 at 10:59
@warpech / @Johannes Rössel: That is the Byte Order Mark (BOM). Here is more about it: decodeunicode.org/de/U+FEFF In Notepad++ you can choose "UTF-8 without BOM" as the encoding and you won't have problems with it. – marco92w Sep 7 at 13:36

3 Answers

vote up 3 vote down check

That last character just isn't in the file (try viewing the source), which is why you don't see it.

I think you might be better off saving the PHP file as UTF-8 (in Notepad++ that options is available in Format -> Encode in UTF-8 without BOM), and inserting the actual characters in your PHP file (i.e. in Notepad++), rather than hacking around with inserting à everywhere. You may find Windows Character Map useful for inserting unicode characters.

link|flag
Why the downvote? Have I got something wrong? – Dominic Rodger Sep 7 at 10:57
No, I don't think so. Everything's fine. Thank you for the tip with Notepad++! – marco92w Sep 7 at 13:37
vote up 2 vote down

You should always set your editor to the same encoding that the generated HTML instructs the browser to use. If the HTML page is intended to be interpreted as UTF-8, then set your text editor to UTF-8. PHP is completely unaware of the encoding settings of the editor used to create the file; it treats strings as a stream of bytes.

In other words, as long as the right bytes are in the file, everything will work. And the easiest way to ensure the right bytes are in the file, is to set your encoding to the same one the web page is supposed to be in. Anything else just makes life more difficult than it needs to be.

But the best defence is to leave non-ASCII characters out of the code completely. You can pull them out of a database or localisation file instead. This means the code can be modified in essentially any editor without worrying about damaging the encoding.

link|flag
Thank you, I will do this in the future. It will really make coding easier. – marco92w Sep 7 at 13:39
vote up 4 vote down

The Euro sign (U+20AC) is encoded in UTF-8 with three bytes, not two. This can be seen here. So your encoding is simply wrong.

link|flag
Thanks, that seems to be the cause. :) – marco92w Sep 7 at 13:37
1  
It's not uncommon for whatever handles text to drop invalid byte sequences from the input. So when you advertise something as UTF-8 and include invalid UTF-8 then don't expect it to be there. – Johannes Rössel Sep 7 at 14:30

Your Answer

Get an OpenID
or

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