// JavaScript //The atob() function decodes Base64 strings in web applications. const decodedString = atob("U29tZSBlbmNvZGVkIHN0cmluZw=="); console.log(decodedString); // Output: Some encoded string
# Python # The base64.b64decode() function converts Base64 text into its original binary format. import base64 encoded_str = "U29tZSBlbmNvZGVkIHN0cmluZw==" decoded_bytes = base64.b64decode(encoded_str) print(decoded_bytes.decode("utf-8")) # Output: Some encoded string
// PHP // The base64_decode() function allows web developers to process encoded data. $encoded_str = "U29tZSBlbmNvZGVkIHN0cmluZw=="; $decoded_str = base64_decode($encoded_str); echo $decoded_str; // Output: Some encoded string
// Java // The Base64.getDecoder().decode() method efficiently handles Base64-encoded text. import java.util.Base64; public class Main { public static void main(String[] args) { String encodedStr = "U29tZSBlbmNvZGVkIHN0cmluZw=="; byte[] decodedBytes = Base64.getDecoder().decode(encodedStr); System.out.println(new String(decodedBytes)); // Output: Some encoded string } }