๐Ÿ”ฌEncoding | Decoding Tools

Online tools

CyberChef : Encode | Decode anything

Hash identifier

# install 
pip install hashid

# usage
hashid $hash

URL Dencoder

Base64

# encode
echo "Script Kiddie" | base64 
# output
U2NyaXB0IEtpZGRpZQo=

# decode
echo "U2NyaXB0IEtpZGRpZQo=" | base64 --decode 
# output
Script Kiddie

Last updated

Was this helpful?