How to recover text that was encoded with base64?

懵懂的女人 提交于 2019-12-12 04:37:44

问题


How can I recover a text that was corrupted by base64 encoding? E.g.

f('Dan=E7a')=Dança

I tried with python but couldn't get it right.


回答1:


That looks like Quoted-printable encoding, not base-64.

There's a module in the Python standard library called quopri that should be able to convert the text.



来源:https://stackoverflow.com/questions/7440092/how-to-recover-text-that-was-encoded-with-base64

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!