I have a json file named data.json
with data as
"data": {
"val1": "568.000188",
"val2": "Réunion..Ãland Islands,rrrß"
},
But when I am trying to read the file as
var result = require(data.json);
I am getting result as below
"data": {
"val1": "568.000188",
"val2": "Réunion..�land Islands,rrr�"
},
Can any one suggest me,how to read the file,so that I'll get exact result?
Thanks