다른 문자 집합에는 ASCII, ANSI, ISO-8859-1, UTF-8 등이 포함됩니다. ISO-8859-1은 256개의 다른 문자 코드를 지원합니다. ASCII는 128개의 서로 다른 영숫자를 정의했습니다. HTML의 charset 속성은 와 함께 사용되어 문자 인코딩을 지정합니다.
다음은 구문입니다 -
<meta charset="char_set">
위의 char_set은 HTML 문서의 문자 인코딩을 지정하기 위한 문자 집합입니다.
이제 HTML 문자 인코딩을 구현하는 예를 살펴보겠습니다 -
예시
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> </head> <body> <h2>Example</h2> <p>We have added demo text −</p> <textarea rows="4" cols="50"> Here, we are mentioned the demo content. This is just to display an example of charset in an HTML document. </textarea> <br> <button type="button">Previous</button> <button type="button">Next</button> </body> </html>
출력