php - UTF-8 encoded content not displaying correctly, � symbol -


i pulling information table in phpmyadmin. created in wordpress , encoded in utf-8 (i have checked config file). when echo content displayed characters � characters include double spaces, apostrophes, line breaks , ™

i have used function forceutf() here https://github.com/neitanod/forceutf8 (including updated fix). replaced � ?

is there method can use?

update

i have checked database tables, symbols appear correctly in table.
this appears in phpmyadmin mainpage

server: localhost via unix socket server version: 5.5.36-log protocol version: 10 user: ******** mysql charset: utf-8 unicode (utf8) 

i have set

<meta charset="utf-8"> 

in php file.
have got utf-8 check in script, returns : current character set: utf8

        if (!$con->set_charset("utf8")) {             printf("error loading character set utf8: %s\n", $con->error);         } else {             printf("current character set: %s\n", $con->character_set_name());         } 

the browser using chrome, intended mobile browsers.


Comments

Popular posts from this blog

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -

php - Magento - Deleted Base url key -

android - How to disable Button if EditText is empty ? -