UTF-8 encoidng issue when exporting csv file , JavaScript
Problem solved by adding BOM at the start of the csv string:
var csv = "\ufeff"+CSV;
This is my solution:
var blob = new Blob(["\uFEFF"+csv], {
type: 'text/csv; charset=utf-8'
});