Skip to content

Instantly share code, notes, and snippets.

@lucsoft
Created March 13, 2020 08:31
Show Gist options
  • Save lucsoft/8057e25a2abd15f79ed187d9f9aafb36 to your computer and use it in GitHub Desktop.
Save lucsoft/8057e25a2abd15f79ed187d9f9aafb36 to your computer and use it in GitHub Desktop.
hex to string in JS
function hexToString (hex) {
var string = '';
for (let i = 0; i < hex.length; i += 2) {
string += String.fromCharCode(parseInt(hex.substr(i, 2), 16));
}
return string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment