JavaScript Base64 Encode and Decode - btoa() and atob()

Опубликовано: 16 Март 2026
на канале: Webdox Computer Institute, Jalandhar
1,431
23

what is base64
Base64 is a one of the binary-to-text encoding schemes

Application
Base64 encoding schemes are used
encode binary data that needs to be "stored and transferred over media
that are designed to deal with ASCII".

Convert
btoa() - binary to ASCII
atob() - ASCII to binary

#javascript #javascriptfunctions