Top "Url-encoding" questions

To “URL encode” or “percent encode” text means to encode it for use in a URL.

URL encoding the space character: + or %20?

When is a space in a URL encoded to +, and when is it encoded to %20?

url url-encoding
What is %2C in a URL?

I'm trying to understand the structure of a URL, and I'm seeing a lot of %2C. I'm guessing this is …

url url-encoding
How to do URL decoding in Java?

In Java, I want to convert this: https%3A%2F%2Fmywebsite%2Fdocs%2Fenglish%2Fsite%2Fmybook.do%3Frequest_type To this: …

java url-encoding
Sharing a URL with a query string on Twitter

I'm trying to put a Twitter share link in an email. Because this is in an email I can't rely …

twitter query-string share url-encoding
urlencode vs rawurlencode?

If I want to create a URL using a variable I have two choices to encode the string. urlencode() and …

php urlencode url-encoding
In a URL, should spaces be encoded using %20 or +?

In a URL, should I encode the spaces using %20 or +? For example, in the following example, which one is correct? …

url urlencode url-encoding
How to encode URL to avoid special characters in Java?

i need java code to encode URL to avoid special characters such as spaces and % and & ...etc

java url-encoding
urlencoded Forward slash is breaking URL

About the system I have URLs of this format in my project:- http://project_name/browse_by_exam/type/…

.htaccess url-rewriting http-status-code-404 url-encoding
A html space is showing as %2520 instead of %20

Passing a filename to the firefox browser causes it to replace spaces with %2520 instead of %20. I have the following HTML …

html url filenames url-encoding
Test if string is URL encoded in PHP

How can I test if a string is URL encoded? Which of the following approaches is better? Search the string …

php testing url-encoding