Top "Urldecode" questions

urldecode reverses replacements by urlencode(), which is used to prepare a string for use in a URL by replacing invalid characters such as /, +, ', % etc.

URL decode in iOS

I am using Swift 1.2 to develop my iPhone application and I am communicating with a http web service. The response …

ios swift urldecode
PHP URL decode GET

I have been using URL decode on encoded URL variables from $_get. The current problem I am facing is I …

php get decode urlencode urldecode
How to URL Decode in iOS - Objective C

The stringByReplacingPercentEscapesUsingEncoding method is not working properly as it's not decoding special symbols that dont start with a % character, i.…

objective-c ios urldecode
How to decode the url in php where url is encoded with encodeURIComponent()

How to decode the url in php where url is encoded with encodeURIComponent()? I have tried the urldecode() but then …

php javascript urlencode urldecode
How to decode a (doubly) 'url-encoded' string in python

Tried decoding a url-encoded string in the following way some_string = 'FireShot3%2B%25282%2529.png' import urllib res = urllib.unquote(some_…

python urlencode urldecode
Remove all backslashes from PHP urldecoded string

I am trying to remove all backslashes from a url-decoded string, but it is outputting \ rather than outputting the url-decoded …

php str-replace urldecode
SQL Server Url Decoding

I need to run a query against a legacy table that stores URL encoded text. I need this text to …

sql sql-server-2000 urldecode
Decoding URL encoded UTF-8 strings in VBScript

I need to URL decode a string in a VBScript. The string may contain Unicode characters which are encoded as …

utf-8 vbscript urldecode
How to know if a URL is decoded/encoded?

I am using Javascript method decodeURIComponent to decode an encoded URL. Now I am having an issue, that sometimes the …

javascript urlencode urldecode
How to decode "\u0026" in a URL?

I want decode URL A to B: A) http:\/\/example.com\/xyz?params=id%2Cexpire\u0026abc=123 B) http://example.…

c# url urldecode