-10

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

Near1999
  • 1,547
  • 2
  • 18
  • 37

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,988
  • 9
  • 25
  • 38
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
  • 8,830
  • 18
  • 51
  • 70