Skip to content

Instantly share code, notes, and snippets.

@fschwiet
Created July 15, 2013 17:37
Show Gist options
  • Save fschwiet/6001847 to your computer and use it in GitHub Desktop.
Save fschwiet/6001847 to your computer and use it in GitHub Desktop.
var input = "e299a5205765204d616b652054756d6d792048617070792120e299a5"
var output = new Buffer(input.length / 2);
for(var i = 0; i < input.length / 2; i++) {
output[i] = parseInt(input.slice(i*2, i*2 + 2), 16);
}
console.log(output.toString('utf8'));
@fschwiet
Copy link
Author

Output is '♥ We Make Tummy Happy! ♥'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment