I want to display arabic text but charactere المملك display.
For example the word المملكة العربية السعودية display on المملكة العربية السعودية
I add on my page always encoded on UTF-8:
<meta charset="utf-8">
but that not changed.
text is from mysqli database to php .. any sugestions .. ? all php pages are utf8 and database is
tried MyISAM utf8_general_ci
tried InnoDB
tried latin1_general_ci
tried utf8mb4 as well didnt work
tried :
mysqli_set_charset($connection, 'utf8');
mysqli_query($con,"SET CHARACTER SET 'utf8'");
mysqli_query($con,"SET SESSION collation_connection ='utf8_unicode_ci'");
all still same result..
Have you a idea about that?