I want to send a response to a get request made by the javascript object 'XMLHTTPRequest.'
The response content-type will be 'text/plain'.
I would like to add a 'charset' to that (i.e. 'Content-Type:text/plain;charset=UTF-8')
What encodings does javascript work with natively and what encodings will work with javascript on all browsers?
I did find the following site which makes me think that UTF-8 encoding is a safe bet:
http://jerakeen.org/test/unicode/?charset=iso-8859-1
Any other thoughts on this subject? (The server side technology is .NET.)