Base64
64 number system. The way data is expressed in 64 number system.
64진법. 데이터를 64진법으로 표현하는 방식.
The conversion of data to Base64 is said to encoding, and the opposite is said to decoding.
데이터를 Base64로 변환하는 것을 인코딩한다고 표현하고, 그 반대를 디코딩한다고 표현한다.
Since 2 ^ 6 = 64, 6 bits represent one character.
2^6 = 64이므로, 6bit로 문자 한 개를 표현한다.
In addition, the four 6 bits are converted together, which causes padding. In this case, the padding is filled with the "=" character.
또한 6bit를 4개씩 모아 변환하는데, 이 때문에 비는 공간(padding)이 발생한다. 이 경우, 빈 공간은 "=" 문자로 채운다.
In Base64 encoding, the size of the data increases by 33%.
Base64로 인코딩 시 데이터의 크기는 33% 증가한다.
The Base64 encoding example can be seen in the video.
Base64 인코딩 예시는 영상에서 확인할 수 있다.