Back to Tools
đ¤
Base64 Encoder/Decoder
Encode text to Base64 or decode Base64 strings instantly
âĄInstant
Real-time conversion
đBidirectional
Encode & decode
đPrivate
Client-side only
âšī¸ What is Base64?
Base64 is an encoding scheme that converts binary data into ASCII text format. It's commonly used for:
- Encoding images and files in Discord webhooks
- Storing binary data in text-based formats (JSON, XML)
- Transmitting data over systems that only support ASCII
- Encoding authentication credentials
Example: Encode
Input:
Hello Discord!
Output:
SGVsbG8gRGlzY29yZCE=
Example: Decode
Input:
SGVsbG8gRGlzY29yZCE=
Output:
Hello Discord!