Free online tools for Base64, URL, HTML, and string encoding and decoding. All processing runs in your browser — nothing is uploaded to a server.
Encoding converts data from one representation to another — the output is deterministic and reversible. These tools cover the encoding operations developers reach for most often.
Base64 is ubiquitous: it embeds images in CSS data URIs, encodes binary email attachments (MIME), and passes binary data through text-only channels. URL encoding (percent-encoding) ensures query parameters with special characters are transmitted safely per RFC 3986. HTML entity encoding prevents cross-site scripting by converting characters like < into safe entities.
All encoding happens locally in your browser. No data is sent to any server.