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 this?