i believe
mysql 4.1 and above have has a default character set of UTF-8. you can verify this in your my.cnf file, remember to set both client and server (default-character-set and character-set-server).
if you have existing data that you wish to convert to UTF-8, that could be a bit of a hassle. in terms of dealing with new data thoughdump your database, here are a few suggestionsand import it back as UTF-8 making sure:
- use
SET NAMES utf8before you query/insert into the database - use
DEFAULT CHARSET=utf8when creating new tables - remember that
- at this point your mysql client and server should have be in UTF-8 support (see my.cnf). remember any languages you use (such as PHP) must be utf-8 as well(and for that matter, . some versions of PHP will use their own mysql client library, or whatever language you are using)which may not be UTF-8 aware.
if you do want to migrate existing data remember to backup first! lots of weird choping of data can happen when things don't go as planned!
some resources:
- complete UTF-8 migration (cdbaby.com)
- article on UTF-8 readiness of php functions (note some of this information is outdated)
