0
Plss give me some eg coding which has metadata encoding charset
Encoding charset
3 Antworten
0
the encoding charset is for supporting non ascii characters.
in other words, non English characters.
i.e: ⵜⵉⴼⵉⵏⴰⵖ. العربية ، français,😀😊🚀, Asian characters...
without the correct encoding you wouldn't be able to see those letters/emoj... correctly.
0
from 3schools
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<h1>My Website</h1>
<p>Some text...</p>
</body>
</html>
0
Bro what is the use of it in simple words