🧰 FreeTools

URL Kodierer/Dekodierer

URL-kodierte Strings kodieren und dekodieren. Behandelt Sonderzeichen und Prozentkodierung.

Plain Text21 chars
URL-Encoded
hello%20world%20%26%20foo%3Dbar

Häufig gestellte Fragen

What is URL encoding?

URL encoding replaces unsafe ASCII characters with a '%' followed by two hexadecimal digits. It is required for transmitting data in URLs.

Should I encode the entire URL or just parameters?

Only encode the parameter values, not the full URL. Use EncodeURIComponent mode for individual parameter values.

Share:

Related Tools