How to convert a utf-8 string to a utf-16 string in PHP - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T15:31:03Zhttp://stackoverflow.com/feeds/question/155514http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/155514/how-to-convert-a-utf-8-string-to-a-utf-16-string-in-php3How to convert a utf-8 string to a utf-16 string in PHPFreddo4112008-09-30T23:04:58Z2009-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#1555285Answer by Christopher Nadeau for How to convert a utf-8 string to a utf-16 string in PHPChristopher Nadeau2008-09-30T23:10:03Z2008-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#9011410Answer by Lauer for How to convert a utf-8 string to a utf-16 string in PHPLauer2009-05-23T08:33:28Z2009-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>