Skip to content

Instantly share code, notes, and snippets.

View eingengraou's full-sized avatar
💭
I may be slow to respond.

eingengraou eingengraou

💭
I may be slow to respond.
View GitHub Profile
@valentinkostadinov
valentinkostadinov / hex.js
Created June 27, 2013 10:29
JavaScript HEX encoding
function toHex(s) {
// utf8 to latin1
var s = unescape(encodeURIComponent(s))
var h = ''
for (var i = 0; i < s.length; i++) {
h += s.charCodeAt(i).toString(16)
}
return h
}