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?
feedback
|
is probably the simplest solution. | |||||||||||||||
feedback
|
utf8() and uniord() try to mirror the chr() and ord() functions on php:
output:
| |||
|
feedback
|
|
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. | |||
|
feedback
|