module TOML::BasicString

def self.decode_unicode(str)

e.g. \u03B4 => ?
Replace the unicode escaped characters with the corresponding character
def self.decode_unicode(str)
  [str[2..-1].to_i(16)].pack('U')
end