I have code like
<?php
header('Content-Type: text/plain; charset=UTF-8');
echo 'Hello Loréane !';
the e character is not printed properly. How should i fix the code without removing or altering exiting lines of code ?
This is what i get in browser
Hello Lor�ane !
Make sure your PHP source file is encoded as UTF-8. It is probably encoded als Windows-1252 or ISO-8859-1.