I am developping a Zend application. The data in my database is encoded in \"utf8_unicode_ci\". I declared in my application.ini :
resources.view.encoding =
Have you set the following, to fetch data from MySQL as utf8?
resources.db.params.charset = "utf8"
It is necessary to do three things to get correct characters displaying correctly:
Further information in Rob Allen's article.