Skip to content

Instantly share code, notes, and snippets.

@squio
Created May 17, 2021 09:08
Show Gist options
  • Save squio/fffd862e82eff0ab019ebe8cf6af49d7 to your computer and use it in GitHub Desktop.
Save squio/fffd862e82eff0ab019ebe8cf6af49d7 to your computer and use it in GitHub Desktop.
Space separated hex dump to ascii in javascript
let chs = "7b 22 72 65 73 22 3a 22 6c 6f 67 69 6e 22 2c 22 73 74 61 74 22 3a 34 30 33 2c 22 6d 73 67 22 3a 22 43 6f 64 65 20 65 78 70 69 72 65 64 22 7d"
let str = chs.split(" ").map(ch => String.fromCharCode(parseInt(ch, 16))).join("")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment