What character encoding is used in csv export and how to change it ,if its possible?

What character encoding is used in csv export and how to change it ,if its possible?

chael711chael711 Posts: 15Questions: 7Answers: 0

Hi guys can anyone help me the char encoding used in csv export and how to change it?

Answers

  • haleebenhaleeben Posts: 1Questions: 0Answers: 0
    edited October 2017
    $('#myTable').DataTable( {
         buttons: [
             {
                 extend: 'csv',
                 charset: 'UTF-8'
             }
        ]
    } );
    
This discussion has been closed.