I make a service call and I get this string "lastName":"Düsedau"
As you can see this is quite strange, but if you convert this to UTF-8, it is correct. https://encoder.mattiasgeniar.be/index.php
The problem is that in the UI it appears that weird chracters even tho I have charset utf-8
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="'moduleApp'" />
<meta name="viewport" content="width=device-width" />
My Service:
promises.People.$promise.then(function(data) {
this.people = data.People; // JSON that has lastname
});
How can I remove this weird characters from the json? I use AngularJS