常见编码辨别以及通过python实现加解密
一、Escape
特征:以%u开头
Escape()函数可对字符串进行编码,这样就可以在所有的计算机上读取该字符串,Escape(string) string—必需。需被转义或者编码的字符串。
在线加解密网站:http://tools.jb51.net/tools/Escape.asp
通过python实现解密
from urllib.parse import unquote def decode(self,str): result = str.replace('%u','\\u').encode().decode('unicode-escape') return unquote(result)
转载链接:https://blog.csdn.net/m0_67621628/article/details/123667150