Any way to return PHP json_encode with encode UTF-8 and not Unicode?

$arr=array('a'=>'á');
echo json_encode($arr);

mb_internal_encoding('UTF-8');and $arr=array_map('utf8_encode',$arr); does not fix it.

Result: {"a":"\u00e1"}

Expected result: {"a":"á"}

link|improve this question

74% accept rate
+1 as I was about to ask the same question – Jatin Dhoot Jul 21 '11 at 6:10
3  
UTF-8 is Unicode – fromvega Jul 21 '11 at 6:14
possible duplicate of convert a json into a UTF-8 string – Ignacio Vazquez-Abrams Jul 21 '11 at 6:22
3  
UTF-8 is not Unicode, but rather one possible encoding of it. – Ignacio Vazquez-Abrams Jul 21 '11 at 6:23
@fromvega: Nonsense. UTF-8 is an encoding scheme. Unicode is a directory that assigns meaning to numbers. – Kerrek SB Jul 21 '11 at 11:01
show 3 more comments
feedback

2 Answers

up vote 2 down vote accepted

{"a":"\u00e1"} and {"a":"á"} are different ways to write the same JSON document; The JSON decoder will decode the unicode escape.

php's json_encode does not have an option to prefer the latter output (and why should it?). You can, however, roll out your own JSON encoder that does not encode non-ASCII characters, or use Pear's JSON encoder and remove line 349 to 433.

link|improve this answer
Yes, because in my case it is not effecting the final output – Jatin Dhoot Jul 21 '11 at 6:13
feedback

I believe (correct me if I'm wrong) the short answer is no, you can't, at least not with this particular (built in) library.

If your decoder is written correctly, however, it won't make a difference as it still represents the same data.

var_dump(json_decode(json_encode(array('a'=>'á')), true));

array(1) {
  ["a"]=>
  string(2) "á"
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.