7rippy

String Obfuscation

Sep 28th, 2021 (edited)
1,127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.61 KB | None | 0 0
  1. --[[
  2. Run your string through one of these sites
  3.     - 1 | bytes | https://glot.io/snippets/g2ssq6955r
  4.     - 2 | UTF8 | https://www.browserling.com/tools/utf8-encode
  5.     - 3 | UTF16 | https://www.browserling.com/tools/utf16-encode
  6. ]]
  7.  
  8. -- Varying on which site you used, your string should look similar to once of:
  9. local bytes = "\77\121\87\101\98\104\111\111\107\85\82\76" -- Method 1
  10. local UTF8 = "\x4d\x79\x57\x65\x62\x68\x6f\x6f\x6b\x55\x52\x4c" -- Method 2
  11. local UTF16 = "\u{54}\u{68}\u{69}\u{73}\u{49}\u{73}\u{4d}\u{79}\u{53}\u{74}\u{72}\u{69}\u{6e}\u{67}" -- Method 3
  12.  
  13. -- String used in examples - ThisIsMyString
Add Comment
Please, Sign In to add comment