diff options
Diffstat (limited to 'files/ko/glossary/character_encoding/index.html')
-rw-r--r-- | files/ko/glossary/character_encoding/index.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/files/ko/glossary/character_encoding/index.html b/files/ko/glossary/character_encoding/index.html new file mode 100644 index 0000000000..0670b18115 --- /dev/null +++ b/files/ko/glossary/character_encoding/index.html @@ -0,0 +1,23 @@ +--- +title: Character encoding +slug: Glossary/character_encoding +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="더_알아보기">더 알아보기</h2> + +<h3 id="일반적인_지식">일반적인 지식</h3> + +<ul> + <li><a href="https://www.w3.org/International/articles/definitions-characters/">Character encoding on W3C</a></li> + <li>Wikipedia의 {{Interwiki("wikipedia", "Character encoding")}} </li> +</ul> |