Use this function
function Unicode_decode($text) {
return implode(unpack('H*', iconv("UTF-8", "UCS-4BE", $text)));
}
If you want to have U+0000 use this :
for ($i=0; $i < strlen($word); $i++)
{
#$wordconvert #"< #u+0000 #$result #this
https://stackoverflow.com/questions/3...
https://stackoverflow.com/questions/3...