In my Android app I am loading json data with a Volley JsonArrayRequest. The data were created by myself and I saved them with Sublime with UTF-8 encoding. When
I had the same problem earlier two days ago and i have tried every thing my friends just said and it`s the same problem and i tried so meany things .. my file is written in php and using volley to get the data as json i followed these steps to solve the problem ..
before executing the query in your database write this query
mysqli_query($this->connection,"set_NAMES_utf8");
use this header in your file if it`s php
header('Content-Type: application/json ; charset=utf-8 ');
while you are echoing the json according to php there is a solve for this problem
use this special charachter in json_encode($json,JSON_UNESCAPED_UNICODE)
i hope it helped