How to convert a utf-8 string to a utf-16 string in PHP - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T15:31:03Z http://stackoverflow.com/feeds/question/155514 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/155514/how-to-convert-a-utf-8-string-to-a-utf-16-string-in-php 3 How to convert a utf-8 string to a utf-16 string in PHP Freddo411 2008-09-30T23:04:58Z 2009-05-23T08:33:28Z <p>How do I convert a utf-8 string to a utf-16 string in PHP?</p> http://stackoverflow.com/questions/155514/how-to-convert-a-utf-8-string-to-a-utf-16-string-in-php/155528#155528 5 Answer by Christopher Nadeau for How to convert a utf-8 string to a utf-16 string in PHP Christopher Nadeau 2008-09-30T23:10:03Z 2008-09-30T23:10:03Z <p>mbstring <a href="http://www.php.net/manual/en/mbstring.supported-encodings.php" rel="nofollow">supports UTF-16</a>, so you can use <a href="http://www.php.net/manual/en/function.mb-convert-encoding.php" rel="nofollow"><code>mb_convert_encoding</code></a>.</p> http://stackoverflow.com/questions/155514/how-to-convert-a-utf-8-string-to-a-utf-16-string-in-php/901141#901141 0 Answer by Lauer for How to convert a utf-8 string to a utf-16 string in PHP Lauer 2009-05-23T08:33:28Z 2009-05-23T08:33:28Z <p>You could also use <code>iconv</code>.</p> <p>It's native in PHP, but require that all your text is one charset. Else it could discard characters.</p>