What is charset in HTML? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

What is charset in HTML?

What is charset in the meta tag in HTML? Also, what is utf-8 or utf-16? what purpose does it serve?

28th Jul 2019, 6:12 AM
Danial Azadpour
Danial Azadpour - avatar
5 Answers
+ 3
if you now tel me too😅
29th Jul 2019, 7:49 AM
janan
+ 2
Back about 20 years ago, we need to declare charset because different language has different charset. We needed to declare what language our webpage is in for browsers of that time (Netscape Netvigator, IE, etc.) to know which rules show content of the page. For example, BIG5 for traditional Chinese. After Unicode is implemented, now we only need Unicode. MDN meta charset: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta Quote : `The HTML specification recommends the use of the UTF-8 encoding (which can represent all of Unicode)` https://developer.mozilla.org/en-US/docs/Web/Guide/Localizations_and_character_encodings
3rd Feb 2020, 6:06 AM
Gordon
Gordon - avatar
+ 1
https://www.w3schools.com/html/html_charset.asp
28th Jul 2019, 7:32 AM
Aaron Eberhardt
Aaron Eberhardt - avatar
+ 1
ASCII was the first Character Encoding Standard which is also called character set. It defined 128 different alphanumeric characters i.e. numbers (0 - 9), letters (A - Z ), and some special characters like ! $ + - ( ) @ < > / + & # € ℅ etc.
29th Jul 2019, 7:43 PM
Sarthak Mund S3
Sarthak Mund S3 - avatar
+ 1
"Utf-8" & "Utf-16" are charset which are specified in the <meta> tag Example : <meta char= "utf-8">
29th Jul 2019, 7:47 PM
Sarthak Mund S3
Sarthak Mund S3 - avatar