Skip to content

Instantly share code, notes, and snippets.

@lorishui
Created July 21, 2026 02:18
Show Gist options
  • Select an option

  • Save lorishui/d0762d52ff543b1b96f72ed64b1d307f to your computer and use it in GitHub Desktop.

Select an option

Save lorishui/d0762d52ff543b1b96f72ed64b1d307f to your computer and use it in GitHub Desktop.
decode hex and Unicode JavaScript

Decode Hex and Unicode JavaScript

Tool reference: decode hex and Unicode JavaScript

Obfuscated scripts often hide readable strings using escape sequences:

"\x48\x69"          // Hi
"\u0064\u0061ta"   // data
0x8                   // 8

A static JavaScript deobfuscator helps turn those values into readable code before deeper manual inspection.

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