I have prblem with turkish character on metronic theme when i try to turkish get turkish characters from .js file characters automactically converted for exp(Å -> S,Ä° -> I, Ä ->g). How can i solve this problem
Merhaba,
Starterkit/Program.cs
using System.Text.Unicode;
builder.Services.AddWebEncoders(o => {
o.TextEncoderSettings = new System.Text.Encodings.Web.TextEncoderSettings(UnicodeRanges.All);
});
Hi,
May I know what editor are you using? Can you try to put utf-8 encoding for your code in your editor? utf-8 is the recommended character encoding mode that works well for all languages. I would suggest trying to use https://code.visualstudio.com/
Regards