Text Converters
Encode and decode text in various formats
T
URL Encode/Decode
Encode and decode URL strings
hello world → hello%20world
Convert
T
Base64 Encode/Decode
Encode and decode Base64 strings
hello → aGVsbG8=
Convert
T
Morse Code Converter
Convert between text and Morse code
HELLO → .... . .-.. .-.. ---
Convert
About Text Conversions
Our text converters support various encoding and decoding formats commonly used in web development and data processing. All operations are performed locally for privacy and security.
URL Encoding
- • Percent-encoding for URLs
- • Handles special characters
- • RFC 3986 compliant
Base64 Encoding
- • Binary-to-text encoding
- • Safe for URLs and emails
- • RFC 4648 compliant