FIELD NOTES
What Base64 does
Base64 represents binary bytes with printable ASCII characters. It is encoding, not encryption, and should never be treated as protection for secrets.
This converter first maps text to UTF-8 bytes, preserving international characters, then produces Base64. Decoding reverses the same process.