I have a string with accent character with an extra backward slash.
const name = "V\\u00E1ci"
console.log(name); // prints "V\u00E1ci"
I am finding it hard to display it properly, tried various combination of string replace, searched web. but no luck :(
Is there any way I can convert above name to display properly ignoring the first extra backward slash?
This is how, it should be displayed.
Váci