I have an android app which retrieves text data from server.
When I hit the query in the browser the text is received properly as :
Karnataka govt launches E-Step training program for student entrepreneurs. The program is part of Karnataka Innovation & Technology Society.
When I receive the textual data in app as java.lang.String
object it is received as :
Karnataka govt launches E-Step training program for student entrepreneurs. The program is part of Karnataka Innovation & Technology Society.
As you see the  character is introduced in the text/String when received as java.lang.String
object.
How do I stop this from happening? I am using Volley
for making requests.