Percent-encode a URL for safe transport, or decode it back to readable text.
Spaces and symbols like ? & = break URLs. Percent-encoding turns them into safe %XX sequences.
Use Encode before putting text in a query string, and Decode to read it back. It runs locally in your browser.