I want to use special symbols, but instead all I get printed question mark symbol �
I tried
{% autoescape \'html\' %} {{ \'©\'|escape(\'html\') }}
Since you want to display a static string and not a variable, you can write the character directly, you don't need to use the {{ }} tag:
{{ }}
©
Or by using the HTML entity cited by Miro:
™