Search code examples
javastringasciimimeurl-encoding

ASCII Character Decryption


I have a large string of ASCII decimals with percents preceding (example: "%40%3e%20%12" except much larger).

How can I analyze this String to extract all of the actual characters out of it?


Solution

  • You probably want:

    java.net.URLDecoder.decode(str, "UTF-8")