aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/glossary/character_encoding
diff options
context:
space:
mode:
authorFlorian Dieminger <me@fiji-flo.de>2021-02-11 18:29:51 +0100
committerGitHub <noreply@github.com>2021-02-11 18:29:51 +0100
commit2bc5610921312613f8623f7ed347aa576689b2b6 (patch)
treef17a7a00e232c97d1335ff3cb24dbcfafacfe141 /files/zh-cn/glossary/character_encoding
parent964decad361766e85d928a56f0ab80af0e75c172 (diff)
parentfc56124ac4eda6b3f0349c8a16fa750f27b4c7d6 (diff)
downloadtranslated-content-2bc5610921312613f8623f7ed347aa576689b2b6.tar.gz
translated-content-2bc5610921312613f8623f7ed347aa576689b2b6.tar.bz2
translated-content-2bc5610921312613f8623f7ed347aa576689b2b6.zip
Merge pull request #32 from fiji-flo/unslugging-zh-cn
Unslugging zh cn
Diffstat (limited to 'files/zh-cn/glossary/character_encoding')
-rw-r--r--files/zh-cn/glossary/character_encoding/index.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/files/zh-cn/glossary/character_encoding/index.html b/files/zh-cn/glossary/character_encoding/index.html
new file mode 100644
index 0000000000..30100d3032
--- /dev/null
+++ b/files/zh-cn/glossary/character_encoding/index.html
@@ -0,0 +1,27 @@
+---
+title: Character encoding(字符编码)
+slug: Glossary/character_encoding
+tags:
+ - 术语
+ - 术语表
+translation_of: Glossary/character_encoding
+original_slug: Glossary/字符编码
+---
+<p>一套编码系统定义字节与文本间的映射。一连串字节文本能让不同文本解释得以进行。我们指明一套特定编码系统时(如 UTF-8),也就指明了字节得以解释的方式。</p>
+
+<p>例如,我们通常在 HTML 里声明 UTF-8 字符编码,使用如下:</p>
+
+<div class="example">
+<pre class="brush: html"><code>&lt;meta charset="utf-8"&gt;</code></pre>
+
+<p>这就确保你在 HTML 文档中可以使用几乎任何一种人类语言中的字符,并且会稳定显示。</p>
+</div>
+
+<h2 id="了解更多"> 了解更多</h2>
+
+<h3 id="常识">常识</h3>
+
+<ul>
+ <li><a href="https://www.w3.org/International/articles/definitions-characters/">Character encoding on W3C</a></li>
+ <li>{{Interwiki("wikipedia", "Character encoding")}} on Wikipedia</li>
+</ul>