Questions tagged [urldecode]

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

urlencode prepare a string for use in a URL, and urldecode does the reverse operation.

See also

448 questions
0
votes
0 answers

Decode base64 image link

I'm converting the page to canvas and then canvas to the image. Function convertCanvasToImage returns image link as base64 encoded link. Looking for a solution to decode it cause I'll need that later and would be easier. Encoded image starts with…
Dejano
  • 119
  • 1
  • 3
  • 9
0
votes
1 answer

JSON response with dates has perhaps hidden characters?

So i am sending a JSON response from my controller as: "date":["07%2F10%2F2013","07%2F16%2F2013","07%2F25%2F2013"] The dates are being encoded on PHP using urlencode($date); On my jquery response i read it this way: var dates = "+this.date+";…
Hard Fitness
  • 452
  • 3
  • 9
  • 24
0
votes
1 answer

Decode URL/URI in JSTL

I need to decode a URL/URI with JSTL so that an encoded string such as: %3Fname%3DUpHelix becomes: ?name=UpHelix I know you can use URLDecoder in regular java but I don't know how to pull it off in JSTL. Is there a JSTL method that will accomplish…
Mechlar
  • 4,946
  • 12
  • 58
  • 83
0
votes
1 answer

Cuts off form data when setting url as value

This script creates a cookie depending on form data, (ex: ?docname=My Document)