Skip to content

Instantly share code, notes, and snippets.

@nicholasadamou
Created September 18, 2022 01:39
Show Gist options
  • Save nicholasadamou/4c104c6c4552322062e18690db819877 to your computer and use it in GitHub Desktop.
Save nicholasadamou/4c104c6c4552322062e18690db819877 to your computer and use it in GitHub Desktop.
Convert HTML to HTML Entities
const toHTMLEntities = (html) => {
let result = '';
for (let i = 0; i < html.length; i++) {
result += "&#x" + html[i].charCodeAt(0).toString(16) + ";";
}
return result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment