Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
UTF-8 all the way through

So I have a column in my table called 'names' which is a VARCHAR (60), but I am trying to accept international characters properly. For Chinese/Korean characters it is just putting '?' in place of the actual chracters. What is the collate that works properly with the international 2 byte standard(s)? I also need to be able to SELECT data from this column based on case sensitivity so TEST will pull a different row than Test. Thanks

share|improve this question

marked as duplicate by Jan Dvorak, DCoder, The Shift Exchange, Daij-Djan, GSee Jan 1 at 22:38

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 2 down vote accepted

You can sett your database collation to utf8-general-ci and the database will handle characters correctly.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.