ChatGPT解决这个技术问题 Extra ChatGPT

<meta charset="utf-8"> vs <meta http-equiv="Content-Type">

In order to define charset for HTML5 Doctype, which notation should I use?

Short: Long:

Using a tag for something like content-type and encoding is highly ironic, since without knowing those things, you couldn't parse the file to get the value of the meta tag.
You can parse it as ASCII until you reach it. The HTML5 parsing algorithm takes this into account.
Noted should be that neither is been used for parsing when the page is served over web. Instead, the one in HTTP Content-Type response header will be used. The meta tag is only used when the page is loaded from local disk file system.
The meta element is used over HTTP under certain conditions (including an absence of the data being in the HTTP header)
It is also ironic that it is named charset, when it really is for specifying an encoding. (the charset is Unicode, the encoding is UTF-8)

P
Peter Mortensen

In HTML5, they are equivalent. Use the shorter one, as it is easier to remember and type. Browser support is fine since it was designed for backwards compatibility.


What about browser support? Does <meta charset='utf-8'> work in IE6?
Here is an updated link for the Google Code page that @Šime Vidas mentioned. It says, regarding IE 6, 7, and 8, "In non-IE browsers, you can use document.characterSet. In IE, you might think you could document.getElementsByTagName('meta')[0].charset, but this only returns the character encoding you specified, not the encoding that IE is actually using."
I know this thread is old, but gtmetrix.com/specify-a-character-set-early.html indicates using <meta> to set the character encoding disables the lookahead downloader in IE8, which can impact your page load times. Yeah, yeah, I know... drop IE8. @MészárosLajos can come back here in a couple of years and bust our balls for still supporting IE8. ;-)
developer.mozilla.org/en-US/docs/Web/Guide/HTML/… was a nice confirmation of this answer for me.
Today I had an issue where Korean symbols weren't appearing in IE11. Dropping the short syntax in favour of the longer syntax fixed the issue. I don't know if this is due to some kind of server config though or if it is an issue with IE11 and the charset. The exact symbol combination it was failing on was 베라.
H
Honest Abe

Both forms of the meta charset declaration are equivalent and should work the same across browsers. But, there are a few things you need to remember when declaring your web files character-set as UTF-8:

Save your file(s) in UTF-8 encoding without the byte-order mark (BOM). Declare the encoding in your HTML files using meta charset (like above). Your web server must serve your files, declaring the UTF-8 encoding in the Content-Type HTTP header.

Apache servers are configured to serve files in ISO-8859-1 by default, so you need to add the following line to your .htaccess file:

AddDefaultCharset UTF-8

This will configure Apache to serve your files declaring UTF-8 encoding in the Content-Type response header, but your files must be saved in UTF-8 (without BOM) to begin with.

Notepad cannot save your files in UTF-8 without the BOM. A free editor that can is Notepad++. On the program menu bar, select "Encoding > Encode in UTF-8 without BOM". You can also open files and re-save them in UTF-8 using "Encoding > Convert to UTF-8 without BOM".

More on the Byte Order Mark (BOM) at Wikipedia.


@CodeBoy I would amend your answer to say "You should save...without BOM." The following page says "...it is usually best for interoperability to omit the BOM..." indicating a best practice, but not a requirement: w3.org/International/questions/qa-byte-order-mark
In IIS you can set the charset in HTTP headers with in Web.Config - add it to
as I understand things, it doesn't matter AT ALL if you save with our without BOM.
Why do you say UTF-8 HTML should be without a BOM. Having a BOM should work fine. Also, you don't need meta and an HTTP header. You just need one of BOM, meta or HTTP header.
Summing up: don't use BOM for UTF-8 I can't agree with this. The BOM in UTF-8 is very useful for signaling the encoding type. Otherwise we have to guess, or use things like the meta tags this question refers to. The cool thing about the BOM is that it is part of the Unicode spec and thus can be used for all data encoded in Unicode, not just HTML. What we should do is use BOMs everywhere, let legacy software blow up on it, report those bugs and get them fixed.
P
Peter Mortensen

Another reason to go with the short one is that it matches other instances where you might specify a character set in markup. For example:

<script type="javascript" charset="UTF-8" src="/script.js"></script>

<p><a charset="UTF-8" href="http://example.com/">Example Site</a></p>

Consistency helps to reduce errors and make code more readable.

Note that the charset attribute is case-insensitive. You can use UTF-8 or utf-8, however UTF-8 is clearer, more readable, more accurate.

Also, there is absolutely no reason at all to use any value other than UTF-8 in the meta charset attribute or page header. UTF-8 is the default encoding for Web documents since HTML4 in 1999 and the only practical way to make modern Web pages.

Also you should not use HTML entities in UTF-8. Characters like the copyright symbol should be typed directly. The only entities you should use are for the five reserved markup characters: less than, greater than, ampersand, prime, double prime.

Entities need an HTML parser, which you may not always want to use going forward. They introduce errors, make your code less readable, increase your file sizes, and sometimes decode incorrectly in various browsers depending on which entities you used. Learn how to type/insert copyright, trademark, open quote, close quote, apostrophe, em dash, en dash, bullet, Euro, and any other characters you encounter in your content, and use those actual characters in your code.

The Mac has a Character Viewer that you can turn on in the Keyboard System Preference, and you can find and then drag and drop the characters you need, or use the matching Keyboard Viewer to see which keys to type. For example, trademark is Option + 2. UTF-8 contains all of the characters and symbols from every written human language.

So there is no excuse for using -- instead of an em dash. It is not a bad idea to learn the rules of punctuation and typography also ... for example, knowing that a period goes inside a close quote, not outside.

Using a tag for something like content-type and encoding is highly ironic, since without knowing those things, you couldn't parse the file to get the value of the meta tag.

No, that is not true. The browser starts out parsing the file as the browser's default encoding, either UTF-8 or ISO-8859-1. Since US-ASCII is a subset of both ISO-8859-1 and UTF-8, the browser can read <html><head> just fine either way ... it is the same. When the browser encounters the meta charset tag, if the encoding is different than what the browser is already using, the browser reloads the page in the specified encoding.

That is why we put the meta charset tag at the top, right after the head tag, before anything else, even the title. That way you can use UTF-8 characters in your title.

You must save your file(s) in UTF-8 encoding without BOM

That is not strictly true. If you only have US-ASCII characters in your document, you can Save it as US-ASCII and serve it as UTF-8, because it is a subset. But if there are Unicode characters, you are correct, you must Save as UTF-8 without BOM.

If you want a good text editor that will save your files in UTF-8, I recommend Notepad++.

On the Mac, use Bare Bones TextWrangler (free) from Mac App Store, or Bare Bones BBEdit which is at Mac App Store for $39.99 ... very cheap for such a great tool.

In either app, there is a menu at the bottom of the document window where you specify the document encoding and you can easily choose "UTF-8 no BOM". And of course you can set that as the default for new documents in Preferences.

But if your Webserver serves the encoding in the HTTP header, which is recommended, both [meta tags] are needless.

That is incorrect. You should of course set the encoding in the HTTP header, but you should also set it in the meta charset attribute so that the page can be saved by the user, out of the browser onto local storage and then opened again later, in which case the only indication of the encoding that will be present is the meta charset attribute.

You should also set a base tag for the same reason ... on the server, the base tag is unnecessary, but when opened from local storage, the base tag enables the page to work as if it is on the server, with all the assets in place and so on, no broken links.

AddDefaultCharset UTF-8

Or you can just change the encoding of particular file types like so:

AddType text/html;charset=utf-8 html

A tip for serving both UTF-8 and Latin-1 (ISO-8859-1) files is to give the UTF-8 files a "text" extension and Latin-1 files "txt."

AddType text/plain;charset=iso-8859-1 txt
AddType text/plain;charset=utf-8 text

Finally, consider saving your documents with Unix line endings, not legacy DOS or (classic) Mac line endings, which don't help and may hurt, especially down the line as we get further and further from those legacy systems.

An HTML document with valid HTML5, UTF-8 encoding, and Unix line endings is a job well done. You can share and edit and store and read and recover and rely on that document in many contexts. It's lingua franca. It's digital paper.


"If you only have ISO-8859-1 characters in your document, you can Save it as ISO-8859-1 and serve it as UTF-8, because it is a subset" - incorrect. It would be correct if you change "ISO-8859-1" to "US-ASCII". US-ASCII is compatible with UTF-8 because it is a subset, ISO-8859-1 is not. To convert ISO-8859-1 (containing non-ASCII characters) to UTF-8, you would need to encode the non-ASCII characters. The code points for ISO-8859-1 do exist in Unicode, but UTF-8 encodes the ones outside of US-ASCII differently to ISO-8859-1.
Your point about HTML entities is good. In the past, I've used entities only to find that they were converted to their UTF-8 characters after being saved on different systems and/or opened in different editors. It's worth noting, however, that non-breaking spaces ( ) can produce confusing results since you typically won't see them in your editor so are usually best to keep as entities for clarity's sake (in my experience).
"You should also set a base tag..." should come with the caveats described here.
Another reason you might prefer HTML entities is if you're using something like ionicons. I'd rather see &#xf101; than the default glyph, or some strange character I don't recognize.
O
Omar

<meta charset="utf-8"> was introduced with/for HTML5.

As mentioned in the documentation, both are valid. However, <meta charset="utf-8"> is only for HTML5 (and easier to type/remember).

In due time, the old style is bound to become deprecated in the near future. I'd stick to the new <meta charset="utf-8">.

There's only one way, but up. In tech's case, that's phasing out the old (really, REALLY fast)

Documentation: HTML meta charset Attribute—W3Schools


P
Peter Mortensen

While not contesting the other answers, I think the following is worthy of mentioning.

The “long” (http-equiv) notation and the “short” one are equal. Whichever comes first wins; Web server headers will override all the tags; BOM (byte order mark) will override everything, and in many cases it will affect HTML 4 (and probably other stuff, too); If you don't declare any encoding, you will probably get your text in “fallback text encoding” that is defined your browser. Neither in Firefox nor in Chrome it's UTF-8; In absence of other clues the browser will attempt to read your document as if it was in ASCII to get the encoding, so you can't use any weird encodings (UTF-16 with BOM should do, though); While the specifications say that the encoding declaration must be within the first 512 bytes of the document, most browsers will try reading more than that.

You can test by running echo 'HTTP/1.1 200 OK\r\nContent-type: text/html; charset=windows-1251\r\n\r\n\xef\xbb\xbf<!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta charset="windows-1251"><title>привет</title></head><body>привет</body></html>' | nc -lp 4500 and pointing your browser at localhost:4500. (Of course you will want to change or remove parts. The BOM part is \xef\xbb\xbf. Be wary of the encoding of your shell.)

Please mind that it's very important that you explicitly declare the encoding. Letting browsers guess can lead to security issues.


Good points, but can you detail which security issues are you referring to?
The long notation shouldn't override the short one—simply the first one in the document should win.
@Armfoot In the past there used to be problems with UTF-7 from what I remember. Also sniffing on the web is generally bad, e.g. when you upload an image something which is sniffed as script content.
@gsnedders tested in chrome and firefox, you're right. edited the answer accordingly. Armfoot: it was something about some 7 bit encoding, don't remember what exactly.
@CraigMcQueen pretty sure the browser fallback still (in 2018) defaults to Western European in Western Europe, so I imagine it defaults to whatever pre-unicode encoding has been dominant in each region. Users can set the fallback to utf-8 but this just exposes all the crappy encoding thousands of sites still use as glitchy high byte ascii characters all over, so it is still not common. More's the pity. Can't see how this is going to change without a little coercion from the browser vendors, and they're not keen on breaking legacy stuff.
P
Peter Mortensen

Use <meta charset="utf-8" /> for web browsers when using HTML5.

Use <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> when using HTML4 or XHTML, or for outdated DOM parsers, like DOMDocument in PHP 5.3.


P
Peter Mortensen

To embed a signature in an email, I would use the long version:

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

The reason is that not many email readers use HTML5, so it's always better use old HTML styles. Actually, it's better to use tables than divs + CSS as well.


P
Peter Mortensen

There is some news based on Mozilla Foundation, and SitePoint:

Do not use this value (http-equiv=content-type) as it is obsolete. Prefer the charset attribute on the element.

https://i.stack.imgur.com/4alVf.png


oh finally, something a bit more recent
The XHTML1 standard says otherwise, don't fall for the Mozilla-only view on things - they don't even explain their note. Whoever dealt with XML (to understand XHTML) should know it comes with an encoding parameter right away.

关注公众号,不定期副业成功案例分享
Follow WeChat

Success story sharing

Want to stay one step ahead of the latest teleworks?

Subscribe Now