# File lib/roxml.rb, line 484
        def to_utf
            begin
                Iconv.new("utf-8", "iso-8859-1").iconv(self)
            rescue Iconv::IllegalSequence => e
                STDERR << "!! Failed converting from UTF-8 -> ISO-8859-1 (#{self}). Already the right charset?"
                self
            end
        end