Does utf8_unicode_ci
support turkish in mysql
?
If not, please advice which character encoding format should I use.
Thanks...
Does utf8_unicode_ci
support turkish in mysql
?
If not, please advice which character encoding format should I use.
Thanks...
The utf8
CHARACTER SET handles Turkish. The utf8_unicode_ci
COLLATION will order things in some manner. So, in that sense, yes. But...
There is also utf8_turkish_ci
, which differs in the handling of at least these: ÇçÖöğşÜü
. For example Ü
is somewhat like a letter between U
and V
instead of being treated as equal to U
.
Reference: http://mysql.rjweb.org/doc.php/charcoll
If you are dealing with a lot of languages, utf8_unicode_ci
may be a good compromise. If dealing mostly with Turkish, use utf8_turkish_ci
.