diff options
Diffstat (limited to 'files/ja/glossary/character_encoding/index.html')
-rw-r--r-- | files/ja/glossary/character_encoding/index.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/files/ja/glossary/character_encoding/index.html b/files/ja/glossary/character_encoding/index.html new file mode 100644 index 0000000000..3ef84df259 --- /dev/null +++ b/files/ja/glossary/character_encoding/index.html @@ -0,0 +1,26 @@ +--- +title: Character encoding (文字エンコーディング) +slug: Glossary/character_encoding +tags: + - Composing + - Glossary +translation_of: Glossary/character_encoding +--- +<p>エンコーディングはバイトと文字を対応付けるものです。バイトの並びは文字としてさまざまに解釈できます。特定のエンコーディング(UTF-8 など)を設定することで、バイトの並びがどのように解釈されるかを定めることができます。</p> + +<p>例えば、 HTML ではふつう以下のような行を使って UTF-8 の文字エンコーディングを宣言します。</p> + +<div class="example"> +<pre class="brush: html"><code><meta charset="utf-8"></code></pre> + +<p>これで HTML 文書であらゆる自然言語の文字を使用できるようになり、確実に表示されるようになります。</p> +</div> + +<h2 id="Learn_more" name="Learn_more">関連情報</h2> + +<h3 id="General_knowledge" name="General_knowledge">一般知識</h3> + +<ul> + <li><a href="https://www.w3.org/International/articles/definitions-characters/">W3C の文字エンコーディング</a></li> + <li>ウィキペディアの{{Interwiki("wikipedia", "文字エンコーディング")}}</li> +</ul> |