JSFiddle - React, Tailwind, and code Playground

by 2Yootz

JavaScript

console.log(html_encode('<b>Chad</b>'))
function test(value) {
return $('<div />')
      .text(value)
      //.html()
      }
      
      
function html_encode(str){
    var div = document.createElement("div");
    div[("textContent" in div) ? "textContent" : "innerText"] = str;
   return div.innerHTML;
}