One issue I'm facing is that when using the german ü, ä, ö characters in HTML, they are showing up as unknown symbols. To properly display them, you can write ü as "ü ;" and ä as "ä ;", and so on. However, my challenge is coming from trying to replace ü with "ü ;" in a typescript method.
Below is the method I've created in typescript to replace ü with "ü ;"
public stringHelper(textUml: string): string {
textUml = textUml.replace("ü", "ü");
debugger;
return textUml;
}
<button class="btn btn-success" (click)="addKeySkill()">{{stringHelper("Hinzufügen")}}</button>
However, instead of displaying "Hinzufügen," it appears as "Hinzufü ;gen".