๐ก Encoding
List of commonly used string encoding techniques.
Encoding != Encryption
tip
Use DenCode to guess the encoding of a cipher text.
Percent-encodingโ
Often has the form %XX where XX is the hexadecimal representation of a character.
Typically used in URLs to encode special characters that are not allowed.
tip
- Sometimes space characters are encoded as
+instead of%20. - If you see
%25many times, the string may be double-encoded.
Base64โ
Often ends with = or ==.
Typically used to encode binary data into ASCII characters.