You use a bitmask, as specified in http://php.net/manual/en/function.json-encode.php:
json_encode($array, JSON_PRETTY_PRINT|JSON_UNESCAPED_UNICODE);
This will add the binary values of JSON_PRETTY_PRINT and JSON_UNESCAPED_UNICODE with the binary OR operator.