Skip to main content

Encoding converters

Convert text or encoded bytes to Base64, hex, Base32, percent-encode URLs, or escape HTML entities. Encoding is reversible. It is not a cipher.

18 tools

Encoding versus hashing

Base64 and URL encoding are reversible. Hashes are not. If you need a checksum, use the hash tools instead.

Which converter to open

Use Base64 for binary-to-text. Use hex or Base32 when a system wants those alphabets. Use URL encoding for percent-encoding. Use HTML entities to escape or unescape &, <, and quotes.