Encoding Tools
Work with byte encodings, URL and HTML contexts, Unicode code points, Morse notation, ROT13, and unverified token inspection under declared profiles.
Transformations run in this page, while ordinary page requests and browser behavior remain separate from the entered-value processing.
What This Category Covers
- Standard Base64 and base64url byte representation
- URL-component and form-value percent encoding
- HTML character references and inert decoding
- Unicode code points, Morse notation, and ROT13
- Decode-only JWS and JWE structure inspection
Common Use Cases
- Choose standard Base64 or base64url and keep the UTF-8 byte boundary visible.
- Separate URI-component, form, and HTML character-reference contexts.
- Inspect Unicode, Morse, ROT13, and compact tokens without security overclaims.
Quick Reference
| Task | Recommended Tool | Why It Helps |
|---|---|---|
| Inspect Base64 bytes | Base64 Decode | Choose the alphabet and strict UTF-8 or hexadecimal byte output. |
| Encode one URL value | URL Encode | Choose URI-component or form rules before encoding. |
| Inspect a compact token | JWT Decode | Read JWS parts or identify JWE while keeping every claim unverified. |
| Inspect code points | Text to Unicode | List Unicode scalar values without splitting supplementary characters. |
| Transcribe Morse | Text to Morse Code | Use explicit letter and word separators under the published mapping. |
| Apply ROT13 | ROT13 | Rotate ASCII letters for reversible demonstrations, not security. |
Choose The Boundary Before Encoding Or Decoding
Base64 represents bytes, URL encoding works within a URL or form context, HTML character references belong to HTML parsing, and Unicode notation names code points. These operations are reversible representations rather than encryption or a universal sanitization step.
Select the explicit alphabet or context shown by the tool, decode one layer, and keep decoded output inert until it is validated for its destination. JWT Decode only inspects compact JWS or JWE structure; readable claims are not verified identity, authorization, or token validity.
Popular Encoding Tools
Search In Library →
EncodingBase64 Encode
Encode UTF-8 bytes as standard Base64 or unpadded base64url.
EncodingBase64 Decode
Decode a declared Base64 alphabet into strict UTF-8 text or hexadecimal bytes.
EncodingURL Encode
Encode one URI-component or form value with explicit space and plus rules.
EncodingURL Decode
Decode one percent-encoding layer under component or form semantics.
EncodingHTML Entity Encode
Encode five HTML-sensitive characters under a deterministic one-pass profile.
EncodingJWT Decode
Inspect JWS parts or identify JWE while keeping every decoded claim unverified.
Related Guides
These guides distinguish byte encodings, URL and HTML contexts, Unicode representations, reversible notation, and unverified token inspection.
All 12 Tools In This Category
Base64 Encode
Encode UTF-8 bytes as standard Base64 or unpadded base64url.
EncodingBase64 Decode
Decode a declared Base64 alphabet into strict UTF-8 text or hexadecimal bytes.
EncodingURL Encode
Encode one URI-component or form value with explicit space and plus rules.
EncodingURL Decode
Decode one percent-encoding layer under component or form semantics.
EncodingHTML Entity Encode
Encode five HTML-sensitive characters under a deterministic one-pass profile.
EncodingHTML Entity Decode
Decode browser-compatible character references into inert text.
EncodingText to Unicode
Inspect Unicode code points without splitting supplementary characters.
EncodingUnicode to Text
Parse strict U+ scalar tokens and reject surrogates or out-of-range values.
EncodingText to Morse Code
Transcribe supported International Morse symbols with explicit boundaries.
EncodingMorse Code to Text
Decode separated Morse tokens without guessing an ambiguous stream.
EncodingROT13
Rotate ASCII Latin letters while leaving every other character unchanged.
EncodingJWT Decode
Inspect JWS parts or identify JWE while keeping every decoded claim unverified.
Related Categories
Encoding Tools FAQ
No. Base64, URL encoding, HTML character references, Morse notation, and ROT13 are reversible representations and do not provide confidentiality.
A plus sign is literal in a URL component but represents a space in form encoding. Decoded HTML characters can also become active only when inserted into an unsafe rendering context, so choose the named profile and keep output inert.
No. Decoding only makes compact token parts readable. Signature verification, decryption, issuer and audience checks, time validation, and authorization require trusted keys and application policy.