About 3,430,000 results
Open links in new tab
  1. url - java.net.URLEncoder.encode (String) is deprecated, what …

    I get the following warning when using java.net.URLEncoder.encode: warning: [deprecation] encode (java.lang.String) in java.net.URLEncoder has been deprecated What should I be …

  2. URL encoding the space character: + or %20? - Stack Overflow

    Oct 27, 2009 · From Wikipedia (emphasis and link added): When data that has been entered into HTML forms is submitted, the form field names and values are encoded and sent to the server …

  3. How to urlencode data for curl command? - Stack Overflow

    Nov 18, 2008 · I am trying to write a bash script for testing that takes a parameter and sends it through curl to web site. I need to url encode the value to make sure that special characters …

  4. How to achieve Base64 URL safe encoding in C#? - Stack Overflow

    Sep 29, 2015 · I want to achieve Base64 URL safe encoding in C#. In Java, we have the common Codec library which gives me an URL safe encoded string. How can I achieve the same using …

  5. .net - URL Encoding using C# - Stack Overflow

    I've been experimenting with the various methods .NET provide for URL encoding. Perhaps the following table will be useful (as output from a test app I wrote): Unencoded UrlEncoded …

  6. How to urlencode a querystring in Python? - Stack Overflow

    Oct 22, 2015 · In my case, I only have a portion of string that I want to URL-encode, for example I want to transform my string to my%20string. Your solution works like a charm for that!

  7. Encode URL in JavaScript - Stack Overflow

    Dec 2, 2008 · A URL encoded this way will no longer work as a URL without unescaping it. So if you can take the time, you always want to use encodeURIComponent () -- before adding on …

  8. Why should I use urlencode? - Stack Overflow

    The main reason is it essentially escapes characters to be included in the URL of your webpage. Suppose a user inputs a user form field as "&joe" and we would like to redirect to a page …

  9. URL Encode and Decode in ASP.NET Core - Stack Overflow

    Jul 5, 2017 · HttpContext.Current.Server.UrlEncode This does only work in .NET Framework. How can I encode or decode URI arguments in ASP.NET Core?

  10. Difference between Url Encode and HTML encode - Stack Overflow

    Nov 28, 2009 · HTML encoding and URL encoding do fundamentally different things. If you HTML encode, for instance, 'hello world' and try to add it to a url, you will get an invalid url.