nodejs string to base64
> console.log(Buffer.from("Hello World").toString('base64'));
SGVsbG8gV29ybGQ=
> console.log(Buffer.from("SGVsbG8gV29ybGQ=", 'base64').toString('ascii'))
Hello World
nodejs string to base64
> console.log(Buffer.from("Hello World").toString('base64'));
SGVsbG8gV29ybGQ=
> console.log(Buffer.from("SGVsbG8gV29ybGQ=", 'base64').toString('ascii'))
Hello World
base64 to base64url javascript
/**
* Function that converts a base64 string into a base64url string
* @param {string} input - The string to convert
*/
function base64ToBase64url(input) {
// Replace non-url compatible chars with base64url standard chars and remove leading =
return input
.replace(/\+/g, '_')
.replace(/\//g, '-')
.replace(/=+$/g, '');
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us