#content showing in non utf-8
3 messages · Page 1 of 1 (latest)
Hi @umbral gull. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:
This issue is likely due to the encoding of your HTML document. To fix this, you need to set the encoding of your HTML document to UTF-8. You can do this by adding <meta charset="UTF-8" /> to the head of your index page. This should correct the issue with the display of accented characters.
Here is an example of how to do it:
<html>
<head>
<meta charset="UTF-8" />
<!-- rest of your head content -->
</head>
<body>
<!-- your body content -->
</body>
</html>