JSFiddle - React, Tailwind, and code Playground

HTML

<span id="fraction">     &frac12;             </span>

JavaScript

function htmlDecode(value) {
    return $('<div/>').html(value).text()   
}

alert($("#fraction").text().trim() === htmlDecode("&frac12;"));