I want to ask a quick question if json is supporting Arabic characters, which I mean when I look for something like the following
$values = $database->get_by_name('معاً'); echo json_encode(array('returnedFromValue' => $value."<br/>"));
I am also looking for an Arabic result from a database, the return values will be like
{"returnedFromValue":"\u0627\u0644\u0645\u0639\u0627\u062f\u0649<br\/>"}{"returnedFromValue":"\u0627\u0644\u0645\u0639\u0627\u062f\u0649<br\/>"}
What am I missing here? better to use XML in terms of support for arabic characters
source share