Login
Remember
Register
Ask a Question
What is Character Encoding?
0
votes
asked
Sep 6, 2023
in
HTML
by
Robindeniel
What is Character Encoding?
characterencoding
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Sep 6, 2023
by
Robindeniel
To display an HTML page correctly, a web browser must know which character set (character encoding) to use. This is specified in the tag:
HTML4:
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1">
HTML5:
<meta charset="UTF-8">
...