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:
ä ö ü ß
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!