If I use Unicode on a ISO-8859-1 site, how will that be interpreted by a browser?

Posted by grg-n-sox on Stack Overflow See other posts from Stack Overflow or by grg-n-sox
Published on 2010-05-29T06:56:20Z Indexed on 2010/05/29 7:02 UTC
Read the original article Hit count: 221

So I got a site that uses ISO-8859-1 encoding and I can't change that. I want to be sure that the content I enter into the web app on the site gets parsed correctly. The parser works on a character by character basis. I also cannot change the parser, I am just writing files for it to handle. The content in my file I am telling the app to display after parsing contains Unicode characters (or at least I assume so, even if they were produced by Windows Alt Codes mapped to CP437). Using entities is not an option due to the character by character operation of the parser. The only characters that the parser escapes upon output are markup sensitive ones like ampersand, less than, and greater than symbols. I would just go ahead and put this through to see what it looks like, but output can only be seen on a publishing, which has to spend a couple days getting approved and such, and that would be asking too much for just a test case.

So, long story short, if I told a site to output ?ÇÑ¥?? on a site with a meta tag stating it is supposed to use ISO-8859-1, will a browser auto-detect the Unicode and display it or will it literally translate it as ISO-8859-1 and get a different set of characters?

© Stack Overflow or respective owner

Related posts about browser

Related posts about unicode