I remember somehow I managed to show it correctly in HTML by setting to different charset, while the correct chars in MySQL displayed crappy in HTML. This test implies the problem was with the default writing setting in MySQL, or the communication between MySQL and PHP/Java. This thought lead me eventually to the solution of this:
mysql_query("SET NAMES 'UTF8'");
Once for all. Done. You may wish to try too. Clean up all your rest language settings except you need to tell MySQL these words: "SET NAMES 'UTF8'".
mysql_query("SET NAMES 'UTF8'");
Once for all. Done. You may wish to try too. Clean up all your rest language settings except you need to tell MySQL these words: "SET NAMES 'UTF8'".