i have many records in my table which are like
дядько
kurbağa
dėdė
Those are all words and i want them to convert into normal words in javascript. Is there any javascrtipt method for this?
i have many records in my table which are like
дядько
kurbağa
dėdė
Those are all words and i want them to convert into normal words in javascript. Is there any javascrtipt method for this?
They are HTML entities, an alternative could be created temporarily an element and then get the innerText.
var textNode = document.createElement("span");
textNode.innerHTML = `дядько
kurbağa
dėdė`
console.log(textNode.innerText);