Skip to content Skip to sidebar Skip to footer

Replace Unicode Characters With Characters (javascript)

Take for example the following string: “A profile of Mr. T, the A Team’s most well known member.” How do I use javascript replace the unicode characte

Solution 1:

@adeneo posted an option using jQuery. Here's a relevant answer I found that doesn't use jQuery. From this answer: What's the right way to decode a string that has special HTML entities in it?

function parseHtmlEnteties(str) {
    return str.replace(/&#([0-9]{1,4});/gi, function(match, numStr) {
        var num = parseInt(numStr, 10); // read num as normal number
        return String.fromCharCode(num);
    });
}

Post a Comment for "Replace Unicode Characters With Characters (javascript)"