base64 encoding

Asked 2 years ago, Updated 2 years ago, 132 views

I heard that base64 encoding format is mainly used in http protocol, so why?

encoding http protocol

2022-09-22 08:17

1 Answers

url in http can only be an ascii character. It means that it is not easy to put Hangul etc. For that reason, when passing parameters, it is delivered by url encoding.

Base64 encodes based on ascii. This means that the result is in ascii characters, so http uses it a lot. Of course? The same character is specially used in url, so even if you encode it as base64, url code must be done.


2022-09-22 08:17

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.