Examples
-
Text to encode
Hello, developers! -
Base64 to decode
SGVsbG8sIGRldmVsb3BlcnMh
About Base64 Converter
Base64 shows up everywhere - Basic Auth headers, embedded images, config values, API payloads - and eyeballing whether a string is encoded correctly is nearly impossible without a proper decoder.
Encode UTF-8 text to standard Base64, or decode a Base64 blob back to readable text, entirely in the browser. Note this is standard MIME Base64, not the URL-safe variant JWTs use - for that, reach for the JWT Decoder instead.
FAQ
- URL-safe Base64?
- Use the UUID converter tab for URL-safe variants, or JWT decoder for token segments.