BRYME Tools · runs entirely in your browser
URL encoder / decoder
Percent-encode text or full URLs, or decode %20-style sequences back to readable text.
What this does
URLs can only carry a limited set of characters; everything else gets percent-encoded (a space becomes %20). Paste text or a URL, choose a mode, and encode or decode:
Component mode encodes everything special — use it for query-parameter values, the part after ?q=. Full URL mode leaves URL structure characters (://, &, =) intact so a whole link stays a working link.
Notes
Decoding fails loudly on malformed input (a stray % that isn't a valid sequence), which is the correct behaviour — better than silently mangling data. One classic gotcha the tool won't hide: in form submissions a space is sometimes written as +; decode those with component mode after replacing + with %20 if the result keeps literal pluses.