> For the complete documentation index, see [llms.txt](https://book.redsquad.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://book.redsquad.xyz/cracking-or-encoding/encoding-or-decoding-tools.md).

# Encoding | Decoding Tools

## Online tools

{% embed url="<https://gchq.github.io/CyberChef>" %}
CyberChef : Encode | Decode anything
{% endembed %}

{% embed url="<https://cryptii.com>" %}

## Hash identifier

```bash
# install 
pip install hashid

# usage
hashid $hash
```

### URL Dencoder

{% embed url="<https://meyerweb.com/eric/tools/dencoder>" %}

### Base64

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

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