How do I set proper Headers for JSON in Apache?

You can use the following code in your httpd.conf if you have access, or even your .htaccess , to force Apache, to send an UTF-8 encoding header.

AddDefaultCharset utf-8
AddType 'application/json; charset=UTF-8' .json

You can add this to httpd.conf

AddCharset utf8 .json