class PDF::Reader::Encoding

def internal_int_to_utf8_string(glyph_code)

def internal_int_to_utf8_string(glyph_code)
  ret = [
    @mapping[glyph_code.to_i] || glyph_code.to_i
  ].pack("U*")
  ret.force_encoding("UTF-8")
  ret
end