Tool Cluster

6 local tools

Encoding Tools

Choose local tools for Base64 text, URL components, query strings, HTML entities, token payloads, and small image data URIs.

Local-onlyNo uploadTask chooser

Which tool should I use?

NeedUseInputNotes
Encode or decode short textBase64 Encode/DecodeTextUse Image to Base64 for files.
Decode URL parametersURL Query ParserURL or queryPreserves duplicate keys.
Escape HTML snippetsHTML Entity Escape/UnescapeTextEscaping is not sanitizing.
Preview image data URIImage to Base64 ConverterImage fileFileReader only, size-limited.

Encoding tool entries

Practical examples

Same text, different encoding

A space becomes %20 in URL encoding, SGVsbG8= in Base64, and stays readable after HTML entity escaping unless markup characters appear.

Token inspection flow

Decode the JWT payload, then format the JSON or convert any timestamp claims.

Workflow notes

Pick the format first

Base64 is reversible text encoding, URL encoding protects URL components, and HTML entities make markup display as text.

Keep files local

Image Base64 uses FileReader and blocks oversized images before reading.

Adjacent categories

FAQ

Is encoding the same as encryption?

No. These tools transform representation and do not make data secret.

Do encoding tools fetch pasted URLs?

No. URL tools parse or transform text locally without network requests.