When decoding/encoding a utf8 string using json_encode/json_decode I do not get back the string in the original encoding...
$test = '{"c":"limón"}';
echo $test; //=> {"c":"limón"}
echo json_decode($test)->{"c"}; //=> limón
echo json_encode(json_decode($test)); //=> {"c":"lim\u00f3n"}
How can I encode the string back to its original encoding (utf8)?