Base64 Conversion
2023-01-04
Here is how to convert a string to and from base64 from the terminal.
echo "abcdef" | base64
YWJjZGVmCg==
echo YWJjZGVmCg== | base64 -d
abcdef
Here is how to convert a string to and from base64 from the terminal.
echo "abcdef" | base64
YWJjZGVmCg==
echo YWJjZGVmCg== | base64 -d
abcdef