/Encoder / Decoder
24 bytes · 21 chars
Encodings
Base64
Base64 URL
Base32
URL Encode
HTML Entities
Hex (UTF-8 bytes)
Binary (UTF-8 bytes)
Decimal (UTF-8 bytes)
Unicode Escapes
ROT13
SHA-1 Hash↑ only
SHA-256 Hash↑ only
SHA-512 Hash↑ only
Base64
Standard Base64 (RFC 4648). Used for embedding binary data in text, email attachments, and data URIs.
Base64 URL
URL-safe Base64 — replaces + with -, / with _, strips = padding. Used in JWTs and OAuth tokens.
Base32
RFC 4648 Base32 — 32-character alphabet (A-Z, 2-7). Case-insensitive and safe for case-insensitive systems.
URL Encode
Percent-encoding for URL query parameters. Encodes all characters except unreserved ones (-_.~).
HTML Entities
Escapes HTML special characters (&, <, >, ", ') so they render as text rather than markup.
Hex (UTF-8 bytes)
Each UTF-8 byte as a two-digit hex number separated by spaces. Standard byte-level hex dump.
Binary (UTF-8 bytes)
Each UTF-8 byte as 8 binary digits separated by spaces. Useful for bit-level inspection.
Decimal (UTF-8 bytes)
Each UTF-8 byte as a decimal number (0–255) separated by spaces.
Unicode Escapes
Non-ASCII characters as \uXXXX JS escape sequences. ASCII passes through unchanged.
ROT13
Rotates each letter 13 positions in the alphabet. Self-inverse: encoding and decoding are identical.
SHA-1 Hashone-way
160-bit (40 hex char) one-way hash. Deprecated for security use — collisions are known. Useful for checksums.
SHA-256 Hashone-way
256-bit (64 hex char) one-way cryptographic hash. Standard for data integrity verification.
SHA-512 Hashone-way
512-bit (128 hex char) one-way hash. Stronger than SHA-256, preferred for password hashing pipelines.