Base64 أداة فك التشفير عبر الإنترنت



فيBase64 أداة فك التشفير عبر الإنترنت:

يمكن أن تساعدك أداة فك تشفير Base64 عبر الإنترنت على تحويل سلسلة تنسيق ترميز Base64 إلى سلسلة UTF-8 عادية.

comic base64 decode

المزيد من الروابط إلى Base64:

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

Base64 في بايثون: https://docs.python.org/2/library/base64.html

Base64 في جاوة: https://docs.oracle.com/javase/8/docs/api/java/util/Base64.html

فك شفرة Base64 السلسلة في بايثون (مع حزمة base64):

import base64

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

Base64 لسلاسل فك التشفير في Java (مع وجود MessageDigest):

import java.util.Base64;

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