Skip to content

Instantly share code, notes, and snippets.

@beckettkev
Created May 13, 2015 18:42
Show Gist options
  • Save beckettkev/1100bb0fddfb52decde6 to your computer and use it in GitHub Desktop.
Save beckettkev/1100bb0fddfb52decde6 to your computer and use it in GitHub Desktop.
var stringToHex = function(s) {
var _hex = '';
for (var i = 0; i < s.length; i++) {
_hex += (s.charCodeAt(i).toString(16));
}
return _hex.toLowerCase();
}​
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment