FIELD NOTES
Why URLs need encoding
URLs reserve characters such as ?, &, = and # for structure. Percent-encoding represents data bytes without allowing those characters to change the URL's meaning.
This tool uses encodeURIComponent and decodeURIComponent, making it suitable for individual path or query values rather than an entire complete URL.