function htmlDecode(input) { const doc = new DOMParser().parseFromString(input, "text/html"); return doc.documentElement.textContent; } console.log( htmlDecode("<img src='myimage.jpg'>") ) // "<img src='myimage.jpg'>"