URL Decoding in Java
java.net.URLDecoder class
String encoded = “foo%3D6+%2B+7”;
System.out.println(
   URLDecoder.decode(encoded));
foo=6 + 7
50