Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

One way to specify the encoding of an HTML document is by sending the appropriate headers. However, a fallback approach is to declare the encoding inline via a meta tag. For example:

<!DOCTYPE html>
<html>
<head>
     <title>Foo bar</title>
     <meta charset="utf-8" />
</head>
<body>
    <p>Hello, world!</p>
</body>
</html>

But to read the document and determine the encoding, must one not already know the encoding?

share|improve this question

1 Answer

up vote 2 down vote accepted

As long as no non-ASCII characters appear before that <meta> tag, the browser can assume that it's ASCII or UTF8, and it will read correctly until that point.
This is why that <meta> tag should be before the <title>.

If it's UTF16, the browser can figure that out by trying to read characters like <.

share|improve this answer
More exactly, it can find out UTF16 by the BOM or (if there's none) by the bunch of 0x00 bytes interlacing the actual characters. – Jan Dvorak Dec 2 '12 at 2:53
Didn't know the meta before title thing, thanks. – Waleed Khan Dec 2 '12 at 5:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.