0

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?

Gray
  • 115,027
  • 24
  • 293
  • 354
Dylan Wheeler
  • 6,928
  • 14
  • 56
  • 80

1 Answers1

2

You probably want:

java.net.URLDecoder.decode(str, "UTF-8")
Tom Hawtin - tackline
  • 145,806
  • 30
  • 211
  • 305