Strumento di decodifica online Base64



suStrumento di decodifica online Base64:

Questo strumento di decodifica Base64 online può aiutarti a convertire una stringa di formato codificata Base64 in una normale stringa UTF-8.

comic base64 decode

Altri collegamenti a Base64:

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

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

Base64 in Java: https://docs.oracle.com/javase/8/docs/api/java/util/Base64.html

Decodifica Base64 della stringa in Python (con pacchetto base64):

import base64

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

Base64 per decodificare le stringhe in Java (con pacchetto MessageDigest):

import java.util.Base64;

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