Questions About This Tool
Should I encode an entire URL?
Usually no. Encode the dynamic component, such as a query value, while preserving the URL’s structural separators.
Why is & encoded as %26?
An unencoded ampersand separates query parameters. Encoding keeps it as part of one value.
Why did decoding %G2 fail?
G is not a hexadecimal digit. Every percent escape needs exactly two digits from 0–9 or A–F.
Does + decode to a space?
Not in this component decoder. Plus-as-space belongs to application/x-www-form-urlencoded conventions.