What is the advantage of using Base64 encoding?

后端 未结 8 1538
长情又很酷
长情又很酷 2020-12-13 13:18

What is the advantage of using Base64 encode?

I would like to understand it better. Do I really need it? Can\'t I simply use pure strings?

I heard that the e

相关标签:
8条回答
  • 2020-12-13 14:10

    Convert BLOB data to string and back...

    0 讨论(0)
  • 2020-12-13 14:12

    The primary use case of base64 encoding is when you want to store or transfer data with a restricted set of characters; i.e. when you can't pass an arbitrary value in each byte.

    0 讨论(0)
提交回复
热议问题