If you're trying to display languages other than English on your WordPress blogs, you may encounter problems displaying them properly. We had some issues come up with clients who wanted to display Chinese characters on their WordPress blogs, but got "???" instead.
The way to resolve this has got to do with the following lines in your wp-config.php file. This file is in your WordPress root directory. Just edit it, and look for these lines:
define(’DB_CHARSET’, ‘utf8?);
define(’DB_COLLATE’, ”);
Comment out the lines by adding double slashes to the start of the lines, like this. Commenting simply excludes them, so they're still there, but aren't run as part of the code.
// define(’DB_CHARSET’, ‘utf8?);
// define(’DB_COLLATE’, ”);
Once that's done, you may have to publish your posts again to re-insert them into your database, and you should see your WordPress posts showing Chinese characters properly now.
[template id="7325"]
Other Stuff