My file is encoded in UTF-8, all characters work fine it except "é"
I have tried several solutions but I always get this character � instead (and only for few words) :
Here is an example of the few option I have tried :
$auteur= utf8_decode("Aurélie ABBĀSĀBĀD");
$commAuteur = mb_convert_encoding($auteur, "HTML-ENTITIES", 'UTF-8');
I added utf8_decode to be sure I'm going from ISO-8859-1 to utf-8, then I tried also this :
$commAuteur = iconv('UTF-8', 'ISO-8859-1//TRANSLIT//IGNORE', $auteur);
I eventually also tried this :
$commAuteur = htmlentities($auteur);
None of all these options worked correctly, and I don't understand how some é are displayed normally and others have this issue, im out of solutions any suggestions ?