I have the following string: Don%E2%80%99t%20Have%20a%20Login?
how to convert it to human readable format?
Asked
Active
Viewed 120 times
-10

Near1999
- 1,547
- 2
- 18
- 37
-
is it encrypted form ? – Hemant Parmar Feb 06 '18 at 09:32
-
Woot... this is awesome... `spontaneous growth of random generated code. A true miracle by ...App X`. Program name and version please that produced your string. – ZF007 Feb 06 '18 at 10:28
2 Answers
1
The text is url encoded. To decode, use the URLDecoder
String result = java.net.URLDecoder.decode(url, "UTF-8");

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.
- Open NotePad++
-> Paste your string and select all text.
-> Go to Plugins.
-> Go to MIME Tools
-> Click URL Decode
Simple :-)

Rumit Patel
- 8,830
- 18
- 51
- 70