FAQ
What is URL encoding?
URL encoding converts reserved or unsafe characters into percent-encoded bytes (like %20) so links are transmitted safely.
When should I use component mode?
Use component mode for query values, path segments, or individual parameters. It encodes more characters than full URL mode.
How does form mode work?
Form mode follows standard HTML form submission behavior, replacing spaces with + when encoding and reversing it during decoding.