I tried this and run as Java application:
`String data = "{\"eidaID\":\"حسنss\"}"; JSONObject obj = new
JSONObject(data);`
System.out.println(obj.get("eidaID").toString());
O/p => حسنss
But, when it comes from the request in the spring boot application in the same manner,
System.out.println("Key= :"+key+" with value= "+jsonObject.get(key).toString()+" is present");
and run as spring boot app. There, it comes as ?????
Can anyone please help here?