show/hide this revision's text 3 clarification + resources added

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 utf8 before you query/insert into the database
  • use DEFAULT CHARSET=utf8 when 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:

show/hide this revision's text 2 added 38 characters in body

i believe mysql 4.1 and above have a default character set of UTF-8. you can verify this in your my.cnf file (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 though, here are a few suggestions:

  • use SET NAMES utf8 before you query/insert into the database
  • use DEFAULT CHARSET=utf8 when creating new tables
  • remember that your mysql client should have UTF-8 support as well (and for that matter, PHP, or whatever language you are using)

if you do want to migrate existing data remember to backup! lots of weird choping of data can happen when things don't go as planned!

show/hide this revision's text 1

i believe mysql 4.1 and above have a default character set of UTF-8. you can verify this in your my.cnf file (default-character-set). 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 though, here are a few suggestions:

  • use SET NAMES utf8 before you query/insert into the database
  • use DEFAULT CHARSET=utf8 when creating new tables
  • remember that your mysql client should have UTF-8 support as well (and for that matter, PHP, or whatever language you are using)

if you do want to migrate existing data remember to backup! lots of weird choping of data can happen when things don't go as planned!