Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 288 Bytes

base64.md

File metadata and controls

17 lines (12 loc) · 288 Bytes

Base64

  • Base64 is a scheme that represent binary data in an ASCII format
  • One Base64 digit represents 6 bits of data

Encode

echo  'Hello world!' | base64

Decode

echo 'SGVsbG8gd29ybGQhCg==' | base64 -d
echo 'SGVsbG8gd29ybGQhCg==' | base64 --decode