# URL Encoder / Decoder

Encode and decode URL parameters.

URL: https://everythingdeck.com/url-encode-decode

## Processing
Processing takes place in your browser. Inputs and files are not uploaded or retained.

## How to use
Encode a value before putting it in a query string, or decode an encoded component back into text.

## Example
Convert hello world & more to hello%20world%20%26%20more.

## Inputs
text

## Outputs
text

## Capabilities
- URL component encode
- URL component decode
- URL query parse

## Limitations
Uses encodeURIComponent and decodeURIComponent. Do not encode an entire URL when only a parameter needs encoding.

## Related tools
- [JSON Formatter](https://everythingdeck.com/json/format)
- [Regex Tester](https://everythingdeck.com/regex-tester)
- [UUID Generator](https://everythingdeck.com/uuid-generator)
