module TOML::BasicString
def self.decode_unicode(str)
Replace the unicode escaped characters with the corresponding character
def self.decode_unicode(str) [str[2..-1].to_i(16)].pack('U') end
def self.decode_unicode(str) [str[2..-1].to_i(16)].pack('U') end