# File lib/spreadsheet/encodings.rb, line 31
      def utf8 string, client=Spreadsheet.client_encoding
        key = ['UTF-8', client]
        iconv = @@iconvs[key] ||= Iconv.new('UTF-8', client)
        iconv.iconv string
      end