About 241,000 results
Open links in new tab
  1. URL decode UTF-8 in Python - Stack Overflow

    May 15, 2013 · The data is UTF-8 encoded bytes escaped with URL quoting, so you want to decode, with urllib.parse.unquote(), which handles decoding from percent-encoded data to UTF-8 bytes and …

  2. How to decode URL-encoded string in shell? - Stack Overflow

    Jun 6, 2011 · How to decode URL-encoded string in shell? Asked 14 years, 6 months ago Modified 2 months ago Viewed 164k times

  3. urlencode - Encode/Decode URLs in C++ - Stack Overflow

    7 CGICC includes methods to do url encode and decode. form_urlencode and form_urldecode

  4. How do I decode a URL parameter using C#? - Stack Overflow

    May 25, 2015 · How can I decode an encoded URL parameter using C#? For example, take this URL:

  5. URL encoding/decoding with Python - Stack Overflow

    Aug 25, 2010 · url encoding a "raw" unicode doesn't really make sense. What you need to do is .encode("utf8") first so you have a known byte encoding and then .quote() that. The output isn't very …

  6. escaping - Encode / decode URLs - Stack Overflow

    Jun 21, 2022 · What's the recommended way of encoding and decoding entire URLs in Go? I am aware of the methods url.QueryEscape and url.QueryUnescape, but they don't seem to be exactly what I …

  7. Decoding URL encoded UTF-8 strings in VBScript - Stack Overflow

    I need to URL decode a string in a VBScript. The string may contain Unicode characters which are encoded as multiple bytes as per UTF-8. So for example "Paris%20%E2 ...

  8. 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 C#? …

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

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

  10. NodeJS Express encodes the URL - how to decode

    Jan 3, 2016 · I'm using NodeJS with Express, and when I use foreign characters in the URL, they automatically get encoded. How do I decode it back to the original string? Before calling NodeJS, I …