class HexaPDF::Font::Encoding::DifferenceEncoding

def name(code)

from the base encoding.
Returns the name for the given code, either from this object, if it contains the code, or
def name(code)
  code_to_name[code] || base_encoding.name(code)
end