Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amichaelgrant/dde940ac1378c1bceca37cf52ee5f95f to your computer and use it in GitHub Desktop.
Save amichaelgrant/dde940ac1378c1bceca37cf52ee5f95f to your computer and use it in GitHub Desktop.
Base64
> console.log(new Buffer("Hello World").toString('base64'));
SGVsbG8gV29ybGQ=
> console.log(new Buffer("SGVsbG8gV29ybGQ=", 'base64').toString('ascii'))
Hello World
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment