Work with Base64, URL encoding, HTML entities, binary, hex, morse code, and other encoded formats.
Encode, decode, and transform structured strings for development, debugging, and data handling.
Pick encode and decode tools when the challenge is transport, compatibility, or representation rather than wording. They are most useful in technical and data-handling workflows.
Encode credentials for HTTP Basic Authentication headers
Encode query string parameters before appending to a URL
Safely encode user input before inserting into HTML to prevent XSS
Escape a string to safely embed in a JavaScript string literal
Obscure spoilers in forum posts (traditional use of ROT13)
Learn how ASCII text is represented in binary
Inspect raw byte values of text in hex
Learn or practice Morse code
Create simple encoded messages for puzzles
Pick encode and decode tools when the challenge is transport, compatibility, or representation rather than wording. They are most useful in technical and data-handling workflows.