01 / Encoding
Encoding & Decoding
Base64, URL percent-encoding, and HTML entity escaping.
🔒 Runs entirely in your browser
01.01
Base64
Encode text to Base64 or decode Base64 back to plaintext. Used in email attachments, data URIs, and API auth headers.
BROWSER NATIVE
01.02
URL Encode / Decode
Percent-encode special characters for safe URL transmission, or decode percent-encoded strings back to readable form.
BROWSER NATIVE
01.03
HTML Entities
Escape HTML special characters to their entity equivalents, or unescape entities back to raw characters.
BROWSER NATIVE