Encoding and decoding with base64, hex, etc on command line🌱 [seed]planted 2025-12-29 1 connectionbase64#echo 'test' | base64 echo 'dGVzdAo=' | base64 -d hex#echo 'test' | xxd -p echo '746573740a' | xxd -p -r rot13#echo 'test' | tr 'A-Za-z' 'N-ZA-Mn-za-m' echo 'grfg' | tr 'A-Za-z' 'N-ZA-Mn-za-m' ← Linked from (1)Javascript deobfuscation tools 🌱 2025-12-29