Related tools
Useful developer and utility tools:
JSON Formatter · Base64 Encoder/Decoder · Password Generator · QR Code Generator
Developer tool
Encode and decode URL text, query values and special characters locally in your browser.
This tool runs locally in your browser. It does not send URLs to a ToolForge Online server.
Useful developer and utility tools:
JSON Formatter · Base64 Encoder/Decoder · Password Generator · QR Code Generator
URL encoding converts spaces, accents and special characters into a format that can be safely used inside URLs.
Use it when preparing query parameters, testing links, debugging encoded strings or checking how a value will appear in a URL.
Encode query value is best for a parameter value. Encode full URL keeps common URL separators readable while encoding spaces and special characters.
Encoding and decoding happen with browser JavaScript on your device. Avoid pasting sensitive URLs if your policy does not allow it.
URL Encoder/Decoder encodes URL text and decodes encoded URL components into readable text.
Use it when preparing query values, debugging a link, checking encoded characters or cleaning URL snippets.
For example, paste a search phrase with spaces and special characters, encode it as a query value and copy the result into a test URL.
The tool uses standard browser URL encoding functions and separates full-URL handling from query-value style encoding where available.
The output does not verify whether a destination URL is safe, reachable or correct; it only changes how characters are represented.
The tool runs encoding and decoding in the browser and should not receive private links if your policy does not allow it.
Encode a single value (like a search phrase) when it goes into one query parameter, and use full-URL encoding only to fix spaces and unsafe characters without touching separators such as ? and &.
URLs cannot contain raw spaces, so encoding replaces them with %20 (or + in some legacy form encodings) to keep the address valid across browsers and servers.
Decoding fails on malformed percent sequences, such as a % not followed by two hexadecimal digits. Check for truncated values or double-encoded text and decode step by step.
No. Encoding and decoding use the browser's built-in URL functions on your device, and the text is not uploaded to a ToolForge Online server.