I need to export javascript array to excel file and download it I\'m doing it in this code. data is a javascript object array.
var csvContent = \"data:t
You should add the UTF-8 BOM at the start of the text, like:
var csvContent = "data:text/csv;charset=utf-8,%EF%BB%BF";
It worked for me with Excel 2013.
Demo Fiddle