views:

40

answers:

1

Hi,

I'm currently developing a website that is gonna show stuff for almost any language in the world. And im having problems choosing the best collation to define in the mysql.

Wich one is the best to support all characters??? Or the most accurate???

Or is just best to convert all characters to unicode?

thanks

+1  A: 

I generally use 8-bit UCS/Unicode transformation format which works perfect for any language

utf8_general_ci

http://dev.mysql.com/doc/refman/5.0/en/charset-unicode.html

dr.stonyhills