Javascript函数
atob("待解码字符串")
btoa("待编码字符串")
Python表达等效函数
import base64
# atob
s = base64.b64decode("待解码的字符".encode("utf8")).decode("latin1")
# btoa
s = base64.b64encode("待编码的字符".encode("latin1")).decode("utf8")
原因解释:
Python中字符串中的Latin1编码与Javascript的binary编码相同