Should I encode a full URL or a component?
Use component encoding for a single parameter value, path segment, or fragment. Use full URL encoding only when the URL separators should stay active.
Why did decoding fail?
Decoding can fail when a percent sign is not followed by two hexadecimal characters, or when the text contains malformed encoded Unicode.
Does this upload the URL text?
No. The conversion runs in the browser. Still avoid sharing encoded text that contains secrets because decoding can reveal the original value.
Do utility tools upload my payload?
Use the page notes for each tool. Browser-side utilities can generate outputs locally, but the final file or code may still reveal whatever you encode or share.
Why should I test the generated output?
Scanners, printers, file viewers, apps, and platform previews can behave differently, so test the exact downloaded output before using it publicly.
Why might another generator show a different output?
Different tools may use different rounding, assumptions, default rates, methods, formulas, or input timing. Compare the visible method and inputs before relying on the output.