in reply to To convert the unicode entity (症) to japanese character 在

How to convert the Unicode entities for {anything} into {any} character:
s/\&#(\d+);/chr($1)/ge; # decimal char. entity s/\&#x([\da-f]+);/chr(hex($1))/ige; # hex char. entity
Also know the Unicode entity list for Japanese characters:

http://www.unicode.org/charts/

  • Comment on Re: To convert the unicode entity (症) to japanese character 在
  • Download Code