Base64 & Encoder
🔒 100% local — nothing leaves your browser
Base64
—
Hex
—
URL Encoded
—
HTML Entities
—
Decode format
Decoded Output
—
SHA-256
—
SHA-1
—
MD5 (not cryptographic)
—
⚠️ Hashes are one-way. SHA-256 is cryptographically secure. MD5 and SHA-1 are broken for security — only use them for checksums/legacy compatibility.
// quick reference
Base64 — encodes binary data as ASCII. Used in HTTP basic auth, JWTs, email attachments, and API keys.
Hex — each byte as two hex digits (0–9, a–f). Used in network protocols, cryptography, and colour codes.
URL encoding — replaces unsafe characters with %XX. Required in query strings and form data.
SHA-256 — produces a 256-bit fingerprint of any input. Used for password hashing, file integrity, digital signatures.