Codeigniter xml_from_result输出奇怪的字符“'╗┐'”

I'm using codeigniter framework since any output i have this chars "´╗┐´╗┐"

//config.php

$config['charset'] = 'UTF-8';

my print http://web.wipix.com.br/Capturar.PNG

/* Model */
public function AllVotos()
{
$this->load->dbutil();          

$select = $this->db->query("SELECT SUM(voto = '0') as insatisfatorio,   SUM(voto = '1') as bom, SUM(voto = '2') as excelente FROM qr_wiplay_participacoes ");

$config = array (
            'root'    => 'root',
            'element' => 'element',
            'newline' => "
",
            'tab'     => "\t"
           );

return $this->dbutil->xml_from_result($select, $config);
}



/* Controller */

public function AllVotos(){

$xml = $this->home_model->AllVotos();

$this->output->set_content_type('text/xml');

$this->output->set_output($xml); 


}

this is because the files are with BOM signature use your editor to remove the signatures Dreamweaver

Modify => Properties page => Title / Encoding => Clear => Include Unicode Signature (BOM)