i wanted to test new django project in Visual Studio 2019. But when i add "ó" or "ą" character in template i get error "'utf-8' codec can't decode byte 0xf3 in position 280: invalid continuation byte"
My own project working well on VS Code. But this one premade by VS 2019 not.
{% extends "app/layout.html" %}
{% block content %}
<h2>{{ title }}.</h2>
<h3>{{ message }}</h3>
<address>
One Microsoft Way<br />
Redmond, WA 98052-6399<br />
<abbr title="Phone">P:</abbr>
425.555.0100
</address>
<address>
<strong>Support: ó</strong> <a href="mailto:Support@example.com">Support@example.com</a><br />
<strong>Marketing:</strong> <a href="mailto:Marketing@example.com">Marketing@exampless.com</a>
</address>
{% endblock %}