base64#

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'