Skip to content

Instantly share code, notes, and snippets.

@hail2u
Created June 2, 2009 23:44
Show Gist options
  • Select an option

  • Save hail2u/122683 to your computer and use it in GitHub Desktop.

Select an option

Save hail2u/122683 to your computer and use it in GitHub Desktop.
function escapeUnicode (str) {
return str.replace(/[^ -~]|\\/g, function (c) {
return '\\u' + ("0000" + c.charCodeAt(0).toString(16)).slice(-4);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment