in reply to To convert the unicode entity (症) to japanese character 在
Also know the Unicode entity list for Japanese characters:s/\&#(\d+);/chr($1)/ge; # decimal char. entity s/\&#x([\da-f]+);/chr(hex($1))/ige; # hex char. entity
http://www.unicode.org/charts/
|
|---|