Base64 Encoder/Decoder

Convert text to Base64 and back, with proper UTF-8 handling.

How it works

Encoding runs text through TextEncoder before btoa() so multi-byte characters like accents and emoji survive the round trip - plain btoa() alone corrupts anything outside basic ASCII.

Ad space