Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

HTML charset 属性


定义和用法

<meta> 元素中使用时, charset 属性指定 HTML 文档的字符编码。

<script> 元素中使用时, charset 属性指定外部脚本文件使用的字符编码。

HTML5 规范鼓励 Web 开发人员使用 UTF-8 字符集,它涵盖了世界上几乎所有字符和符号!


适用于

以下元素可以使用 charset 属性

元素 属性
<meta> charset
<script> charset

示例

Meta 示例

指定 HTML 文档的字符编码

<head>
<meta charset="UTF-8">
</head>
尝试一下 »

脚本示例

一个带有 UTF-8 字符集的外部 JavaScript

<script src="myscripts.js" charset="UTF-8"></script>
尝试一下 »

浏览器支持

每个元素的 charset 属性具有以下浏览器支持

元素
meta
script

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.