Skip to content

Instantly share code, notes, and snippets.

@codebubb
Created September 16, 2019 08:06
Show Gist options
  • Select an option

  • Save codebubb/4e325b6d7ea1b868b0fa8f6ca3ef1e48 to your computer and use it in GitHub Desktop.

Select an option

Save codebubb/4e325b6d7ea1b868b0fa8f6ca3ef1e48 to your computer and use it in GitHub Desktop.
Encode HTML Entities with JavaScript
const encodeHTML = str => str.replace(/[\u00A0-\u9999<>\&]/gim, (i) => `&#${i.charCodeAt(0)};`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment