-
Do you have a php website powered by a mysql database that doesn't render your utf8 characters properly?
Changed the table encoding from the default latin1 to utf8 and it's still not working?
Well, you have to change the mysql connection encoding as well:mysql_query("SET NAMES 'utf8'");
Run this after connecting to the database.