JSFiddle - React, Tailwind, and code Playground
HTML
<span id="fraction"> ½ </span>
JavaScript
function htmlDecode(value) {
return $('<div/>').html(value).text()
}
alert($("#fraction").text().trim() === htmlDecode("½"));