tags:

views:

67

answers:

2

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?

+2  A: 

Unicode can contain every character in use worldwide.

be sure to use UTF-8 for the field. (better yet, for the whole database).

Javier
A: 

utf-8 is your friend.

Dev er dev