Base64
Base64 usually used to reduce the use of special characters.
The length of Base64 hash to be in a multiple of 4.
If the resulting output is only 3 characters long, for example, an extra =
is added as padding, and so on.
Hex
Hex encodes each character into its hex order in the ASCII table.
For example, a
is 61
in hex, b
is 62
, c
is 63
, and so on.
If the hash is consisted of 0-9
and a-f
then it could be hex encoded.
To encode in hex:
To decode in hex:
Caesar/Rot13
Caesar cipher shifts each letter by a fixed number.
Most common of which is rot13
, which shifts each character 13 times forward.
To rot13 encode:
To rot13 decode:
Online tool is available such as rot13.