I am trying to display special characters like Circumflex (Ê) or Acute (&Vacute) in UI5 Fiori. I am not using index.html but I am using component.js. All the answers to this question insert
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
into index.html but I don't have index.html. So how will I do it with component.js?
I have tried using uriencode but that didn't work.
For example I have card control and I want to escape the text in the card header. Here is the code:
<f:Card>
<f:header>
<card:Header id="header" title="value"/>
</f:header>
I am trying to escape the title for card with header id.