Developer tool category

Encoding & Security Tools

Use this collection to inspect how text is represented, escaped for markup, encoded, tokenized, or hashed. Keep the distinction between transformation and verification clear: these utilities expose text, bytes, claims, encodings, and digests, but they do not turn decoded data or a hash into a security guarantee.

Common workflow

Where to start

4 recommended starting points

Step 1

Base64

Encode UTF-8 text or hexadecimal bytes as Base64, create unpadded URL-safe Base64 (Base64URL), or decode Base64 as UTF-8 text or hexadecimal bytes locally.

Open Base64

Step 2

JWT

Decode JWT headers and payloads locally and inspect exp, nbf, and iat time status.

Open JWT

Step 3

URL Component

Encode or decode a URL path, query parameter value, or fragment component, handle form-style plus-sign spaces, remove common tracking parameters, clean and sort full URLs in one pass, normalize comparable URLs, or parse a full URL.

Open URL Component

Step 4

Hash

Generate common digests from UTF-8 text or decoded Hex and Base64 bytes with browser-local processing.

Open Hash

Primary utilities

Core tools

7 core tools

Encoding & Security

Base64 Encoder & Decoder Online

Encode UTF-8 text or hexadecimal bytes as Base64, create unpadded URL-safe Base64 (Base64URL), or decode Base64 as UTF-8 text or hexadecimal bytes locally.

Encoding & Security

JWT Decoder Online

Decode JWT headers and payloads locally and inspect exp, nbf, and iat time status.

Encoding & Security

URL Encoder & Decoder Online

Encode or decode a URL path, query parameter value, or fragment component, handle form-style plus-sign spaces, remove common tracking parameters, clean and sort full URLs in one pass, normalize comparable URLs, or parse a full URL.

Task-specific entry points

Focused tasks

0 focused pages

This category currently uses its core tools as the canonical task entry points, so there are no separate intent-specific pages to duplicate here.

Diagnose specific failures

Troubleshooting

2 topic hubs

24 focused fixes

JWT troubleshooting

Inspect JWT structure, Base64URL segments, JSON claims, time values, algorithms, key identifiers, and verification-related mistakes safely.

24 focused fixes

Hash troubleshooting

Explain hash mismatches caused by algorithms, text encoding, whitespace, line endings, invisible Unicode, byte interpretation, and digest length.

Understand the concepts

Related guides

3 guides

6 min guide

Base64 vs Base64URL: What Changes?

Understand the Base64URL alphabet, padding rules, JWT usage, UTF-8 decoding, and how to convert safely between standard Base64 and URL-safe Base64.