Alat decoding online Base64



TentangAlat decoding online Base64:

Alat decoding Base64 online ini dapat membantu Anda mengubah string format yang disandikan Base64 menjadi string UTF-8 yang normal.

comic base64 decode

Lebih banyak tautan ke Base64:

RFC 3548: https://tools.ietf.org/html/rfc3548.html

Base64 dengan Python: https://docs.python.org/2/library/base64.html

Base64 di Jawa: https://docs.oracle.com/javase/8/docs/api/java/util/Base64.html

Decode Base64 string dengan Python:

import base64

def base64_decoder(str):
    return base64.b64decode(str.encode())
    

Base64 untuk mendekode string di Java (dengan paket MessageDigest):

import java.util.Base64;

public String decode(String str)  {
    byte[] decodedBytes = Base64.getDecoder().decode(str.getBytes());
    String text = new String(decodedBytes);
    return text;
}