HTML <form> accept-charset 속성

❮ HTML <form> 태그

예시

accept-charset 속성이 있는 양식:

<form action="/action_page.php" accept-charset="utf-8">
  <label for="fname">First name:</label>
  <input type="text" id="fname" name="fname"><br><br>
  <input type="submit" value="Submit">
</form>

정의 및 사용

속성 은 accept-charset양식 제출에 사용할 문자 인코딩을 지정합니다. 


브라우저 지원

Attribute
accept-charset Yes Yes Yes Yes Yes

통사론

<form accept-charset="character_set">

속성 값

Value Description
character_set A space-separated list of one or more character encodings that are to be used for the form submission.

Common values:

  • UTF-8 - Character encoding for Unicode
  • ISO-8859-1 - Character encoding for the Latin alphabet

In theory, any character encoding can be used, but no browser understands all of them. The more widely a character encoding is used, the better the chance that a browser will understand it.

To view all available character encodings, go to our Character sets reference.


❮ HTML <form> 태그