I have the following code:
$(function(){
var curso = controller.getNomeCurso();
$("#curso").text(curso);
});
The problem is in the line 18 because I can not display values with special characters correctly.
Example: When sending Nutrição
, the displayed value is Nutri%C3%A7%C3%A3o
, even in line 4 there is a meta tag defining charset as UTF-8
.
How can I resolve this?