Related questions
Convert latin1 characters on a UTF8 table into UTF8
Only today I realized that I was missing this in my PHP scripts:
mysql_set_charset('utf8');
All my tables are InnoDB, collation "utf8_unicode_ci", and all my VARCHAR columns are "utf8_unicode_ci" as well. I have …
Why does Java's String.getBytes() uses "ISO-8859-1"
from java.lang.StringCoding :
String csn = (charsetName == null) ? "ISO-8859-1" : charsetName;
This is what is used from Java.lang.getBytes() , in linux jdk 7
I was always under the impression that UTF-8 is the default charset ?
Thanks