I found a dictionary of Chinese characters in unicode. I\'m trying to build a database of Characters out of this dictionary but I don\'t know how to convert unicode to a charact
Ruby 1.9 :
p "国".codepoints.first #=> 22269 p 22269.chr('UTF-8') #=> "国"