I'm not sure whether you have access to the Apache config (httpd.conf) but you should be able to set an AddDefaultCharset Directive. See:
http://httpd.apache.org/docs/2.0/mod/core.html
Look for the mod_mime.c module and make sure the following is set:
AddDefaultCharset utf-8
or the equivalent Apache 1.x docs (http://httpd.apache.org/docs/1.3/mod/core.html#adddefaultcharset).
However, this only works when "the response content-type is text/plain or text/html".
You should also make sure that your pages have a charset set as well. See this for more info: