How to make MySQL handle UTF-8 properly - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T19:10:48Z http://stackoverflow.com/feeds/question/202205 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/202205/how-to-make-mysql-handle-utf-8-properly 4 How to make MySQL handle UTF-8 properly Ben 2008-10-14T18:09:31Z 2008-10-15T16:05:36Z <p>One of the responses to <a href="http://stackoverflow.com/questions/198721/converting-a-word-document-into-usable-html-in-php">a question I asked yesterday</a> suggested that I should make sure my database can handle UTF-8 characters correctly. Anyone know how I can do this with MySQL?</p> <p>Thanks!</p> <p>Ben</p> http://stackoverflow.com/questions/202205/how-to-make-mysql-handle-utf-8-properly/202246#202246 8 Answer by Owen for How to make MySQL handle UTF-8 properly Owen 2008-10-14T18:21:03Z 2008-10-15T16:05:36Z <p>mysql 4.1 and above has a default character set of UTF-8. you can verify this in your my.cnf file, remember to set <strong>both</strong> client and server (<code>default-character-set</code> and <code>character-set-server</code>).</p> <p>if you have existing data that you wish to convert to UTF-8, dump your database, and import it back as UTF-8 making sure:</p> <ul> <li>use <code>SET NAMES utf8</code> before you query/insert into the database</li> <li>use <code>DEFAULT CHARSET=utf8</code> when creating new tables</li> <li>at this point your mysql client and server should be in UTF-8 (see my.cnf). remember any languages you use (such as PHP) must be utf-8 as well. some versions of PHP will use their own mysql client library, which may not be UTF-8 aware.</li> </ul> <p>if you do want to migrate existing data remember to backup first! lots of weird choping of data can happen when things don't go as planned!</p> <p>some resources:</p> <ul> <li><a href="http://www.oreillynet.com/onlamp/blog/2006/01/turning_mysql_data_in_latin1_t.html" rel="nofollow">complete UTF-8 migration</a> (cdbaby.com)</li> <li>article on <a href="http://www.phpwact.org/php/i18n/utf-8" rel="nofollow">UTF-8 readiness of php functions</a> (note some of this information is outdated)</li> </ul> http://stackoverflow.com/questions/202205/how-to-make-mysql-handle-utf-8-properly/202248#202248 1 Answer by Claudio for How to make MySQL handle UTF-8 properly Claudio 2008-10-14T18:21:46Z 2008-10-14T18:21:46Z <p>SET NAMES UTF8</p> <p>This is does the trick</p> http://stackoverflow.com/questions/202205/how-to-make-mysql-handle-utf-8-properly/202276#202276 2 Answer by Javier for How to make MySQL handle UTF-8 properly Javier 2008-10-14T18:30:19Z 2008-10-14T18:30:19Z <p>to make this 'permanent', in <code>my.cf</code>:</p> <pre><code>[client] default-character-set=utf8 [mysqld] character-set-server = utf8 </code></pre> <p>to check, go to the client and show some variables:</p> <pre><code>SHOW VARIABLES LIKE 'character_set%'; </code></pre> <p>verify that they're all utf8, except <code>..._filesystem</code>, which should be <code>binary</code> and <code>..._dir</code>, that points somewhere in the MySQL installation.</p> http://stackoverflow.com/questions/202205/how-to-make-mysql-handle-utf-8-properly/202287#202287 0 Answer by extraneon for How to make MySQL handle UTF-8 properly extraneon 2008-10-14T18:32:39Z 2008-10-14T18:32:39Z <p>The charset is a property of the database (default) and the table. You can have a look (MySQL commands):</p> <pre><code>show create database foo; &gt; CREATE DATABASE `foo`.`foo` /*!40100 DEFAULT CHARACTER SET latin1 */ show create table foo.bar; &gt; lots of stuff ending with &gt; ) ENGINE=InnoDB AUTO_INCREMENT=252 DEFAULT CHARSET=latin1 </code></pre> <p>In other words; it's quite easy to check your database charset or change it:</p> <pre><code>ALTER TABLE `foo`.`bar` CHARACTER SET utf8; </code></pre> http://stackoverflow.com/questions/202205/how-to-make-mysql-handle-utf-8-properly/203775#203775 0 Answer by Ambush Commander for How to make MySQL handle UTF-8 properly Ambush Commander 2008-10-15T05:05:33Z 2008-10-15T05:05:33Z <p>These <a href="http://htmlpurifier.org/docs/enduser-utf8.html#migrate-db" rel="nofollow">tips on MySQL and UTF-8</a> may be helpful. Unfortunately, they don't constitute a full solution, just common gotchas.</p>