From linux commandline interface execute below commands to encode or decode string values.
Encoding
echo -n 'tekspace' | base64
Output:
dGVrc3BhY2U=
Decoding
echo -n dGVrc3BhY2U= | base64 -d
Output:
tekspace
From linux commandline interface execute below commands to encode or decode string values.
echo -n 'tekspace' | base64
Output:
dGVrc3BhY2U=
echo -n dGVrc3BhY2U= | base64 -d
Output:
tekspace
Get the latest posts delivered right to your inbox