티스토리 뷰

Programming/HTML

HTML :: Character set

디빌리 2012. 11. 22. 14:30

필요성


<출처 : http://www.w3schools.com/tags/ref_charactersets.asp>

HTML Character Sets

To display an HTML page correctly, the browser must know what character-set to use.

The character-set for the early world wide web was ASCII. ASCII supports the numbers from 0-9, the uppercase and lowercase English alphabet, and some special characters.

Complete ASCII reference.

Since many countries use characters which are not a part of ASCII, the default character-set for modern browsers is ISO-8859-1.

Complete ISO-8859-1 reference.

If a web page uses a different character-set than ISO-8859-1, it should be specified in the <meta> tag.

Try it yourself



한글 번역


  초기 웹 브라우저는 문자 인코딩 방식으로 ASCII를 사용했는데 이 것은 숫자 0부터 9까지, 소/대문자 알파벳 그리고 몇가지 특수문자를 표현할 수 있다. 하지만 요즘 사용되는 문자들은 ASCII에 포함되지 않는다. 그래서 현대의 기본 문자 인코딩 방식은 ISO-8859-1이다. 만약, 웹 페이지에 다른 문자 인코딩 방식을 사용하고 싶으면 <meta>태그를 이용해서 해당 문자 인코딩 방식을 명시해 줘야한다.

'Programming > HTML' 카테고리의 다른 글

HTML :: 정의  (0) 2012.11.02
댓글