I have an array item with a French accent ([WIPDescription] => Recette Soupe à lOignon Sans Boeuf US). The data is being properly pulled from the database (mysql).
$sql=mysql_query("SELECT * FROM TABLE..."); while($row=mysql_fetch_array($sql)) { $output[]=array_map("utf8_encode", $row); } print(json_encode($output)); mysql_close(); ?>