If I'm converting a simple JavaScript object to a string, all special chars will be converted to hex code.
function O() {
this.name = "<üäö!";
}
var myObject = new O();
console.log(myObject.toSource());
Result:
{name:"<\xFC\xE4\xF6!"}
How would I avoid this or convert all hex chars back to utf8 chars?