Detecting the character encoding of an HTTP POST request - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T10:28:54Z http://stackoverflow.com/feeds/question/708915 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/708915/detecting-the-character-encoding-of-an-http-post-request 0 Detecting the character encoding of an HTTP POST request Ciaran McNulty 2009-04-02T09:08:22Z 2009-05-01T04:25:24Z <p>I'm building a web service and have a node that accepts a POST to create a new resource. The resource expects one of two content-types - an XML format I'll be defining, or form-encoded variables.</p> <p>The idea is that consuming applications can POST XML directly and benefit from better validation etc., but there's also an HTML interface that will POST the form-encoded stuff. Obviously the XML format has a charset declaration, but I can't see how I detect the form's charset just from looking at the POST.</p> <p>A typical post to the form from Firefox looks like this:</p> <pre><code>POST /path HTTP/1.1 Host: www.myhostname.com User-Agent: Mozilla/5.0 [...etc...] Accept: text/html,application/xhtml+xml, [...etc...] Accept-Language: en-gb,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Content-Type: application/x-www-form-urlencoded Content-Length: 41 field1=value1&amp;field2=value2&amp;field3=value3 </code></pre> <p>Which doesn't seem to contain any useful indication of the character set.</p> <p>From what I can see, the application/x-www-form-urlencoded type is entirely defined in HTML, which just lays out the %-encoding rules, but doesn't say anything about what charset the data should be in.</p> <p>Basically, is there any way of telling the character set if I don't know the character set the HTML originally presented was? Otherwise I'll have to try and guess the character set based on what chars are present, and that's always a bit iffy from what I can tell.</p> http://stackoverflow.com/questions/708915/detecting-the-character-encoding-of-an-http-post-request/708941#708941 0 Answer by AnthonyWJones for Detecting the character encoding of an HTTP POST request AnthonyWJones 2009-04-02T09:16:15Z 2009-04-02T09:16:15Z <p>The Charset used in the POST will match that of the Charset specified in the HTML hosting the form. Hence if your form is sent using UTF-8 encoding that is the encoding used for the posted content. The URL encoding is applied after the values are converted to the set of octets for the character encoding.</p> http://stackoverflow.com/questions/708915/detecting-the-character-encoding-of-an-http-post-request/708942#708942 2 Answer by chburd for Detecting the character encoding of an HTTP POST request chburd 2009-04-02T09:16:24Z 2009-04-02T11:56:16Z <p>the default encoding of a HTTP POST is ISO-8859-1.</p> <p>else you have to look at the Content-Type header that will then look like</p> <pre><code>Content-Type: application/x-www-form-urlencoded ; charset=UTF-8 </code></pre> <p>You can maybe declare your form with</p> <pre><code>&lt;form enctype="application/x-www-form-urlencoded;charset=UTF-8"&gt; </code></pre> <p>or</p> <pre><code>&lt;form accept-charset="UTF-8"&gt; </code></pre> <p>to force the encoding.</p> <p>Some references :</p> <p><a href="http://www.htmlhelp.com/reference/html40/forms/form.html" rel="nofollow">http://www.htmlhelp.com/reference/html40/forms/form.html</a></p> <p><a href="http://www.w3schools.com/tags/tag%5Fform.asp" rel="nofollow">http://www.w3schools.com/tags/tag_form.asp</a></p>