📝
Text to Binary, ASCII, Hex Encoder
Encode and decode text with various character encodings.
Select Encoding Format
Input Text
Encoded Output
🔐 Encoding Formats
Base64
- Binary-to-text encoding
- 64 characters: A-Z, a-z, 0-9, +, /
- Common in email and web
- Increases size by ~33%
URL Encoding
- Percent-encoding
- Spaces become + or %20
- Special characters encoded
- Used in URLs and forms
HTML Encoding
- Entity references
- Prevents XSS attacks
- < becomes <
- Used in web content
Hex/Binary
- Hex: base-16 representation
- Binary: base-2 representation
- Unicode: code points
- Low-level data formats