I have my data in this format: U+597D or like this U+6211. I want to convert them to UTF-8 (original characters are 好 and 我). How can I do it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
is probably the simplest solution. |
|||||||||||||||
|
utf8() and uniord() try to mirror the chr() and ord() functions on php:
output:
|
|||||
|
|
With the aid of the following table: http://en.wikipedia.org/wiki/UTF-8#Description can't be simpler :) Simply mask the unicode numbers according to which range they fit in. |
|||
|
|
works fine, too. |
|||
|
|