fork(1) download
  1. <?php
  2.  
  3. $arr = [
  4. 0 => [0 => "abc", 1 => "įāē"],
  5. 1 => [0 => "čaē", 1 => "qwe"]
  6. ];
  7.  
  8. echo json_encode($arr, JSON_UNESCAPED_UNICODE);
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
[["abc","įāē"],["čaē","qwe"]]