Base64在線解碼工具



關於Base64在線解碼工具:

這個在線Base64解碼工具可以幫助您將一個Base64編碼格式字符串轉換成普通UTF-8字符串.

comic base64 decode

更多關於Base64的鏈接:

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

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

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

用Python解碼字符串的Base64 (用package base64):

  1. import base64
  2.  
  3. def base64_decoder(str):
  4. return base64.b64decode(str.encode())

用Java解碼字符串的Base64 (用package MessageDigest):

  1. import java.util.Base64;
  2.  
  3. public String decode(String str) {
  4. byte[] decodedBytes = Base64.getDecoder().decode(str.getBytes());
  5. String text = new String(decodedBytes);
  6. return text;
  7. }