-10

I have the following string: Don%E2%80%99t%20Have%20a%20Login? how to convert it to human readable format?

Near1999
  • 1,527
  • 2
  • 17
  • 36

2 Answers2

1

The text is url encoded. To decode, use the URLDecoder

String result = java.net.URLDecoder.decode(url, "UTF-8");

Source

rollstuhlfahrer
  • 3,888
  • 9
  • 23
  • 37
1

If you want it in String,

String result = java.net.URLDecoder.decode(url, "UTF-8");

If you want it in text form then

It's simple.

-> Paste your string and select all text.

-> Go to Plugins.

-> Go to MIME Tools

-> Click URL Decode

Simple :-)

enter image description here

Rumit Patel
  • 4,807
  • 11
  • 42
  • 54