Reputation:
If I need a varchar(30) field, for example, that needs to contain several different foreign character sets, is there one particular language type that I can use in MySQL? For example, I have a field contains names in Chinese, Russian, English, Spanish and Portuguese, and possibly more in the future. How do I enable this for a varchar() field?
Upvotes: 2
Views: 170
Reputation: 62593
Unicode can contain every character in use worldwide.
be sure to use UTF-8 for the field. (better yet, for the whole database).
Upvotes: 2