Answers for "base64.decode js"

24

base64 decode javascript

var string = "Hello folks how are you doing today?";
var encodedString = btoa(string); // Base64 encode the String
var decodedString = atob(encodedString); // Base64 decode the String
Posted by: Guest on July-31-2019
1

base64 to string and string to base64 javascript decode

var string = "Hello folks how are you doing today?";
var encodedString = btoa(string); // Base64 encode the String
var decodedString = atob(encodedString); // Base64 decode the String
Posted by: Guest on August-12-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language