Although I set the Charset to Utf-8, I am having trouble displaying Turkish characters. How can I solve this problem? Simple
There was no Turkish character problem on the site I published with IIS. When working with localhost, the characters are corrupted after the second "Hot Reload".
First Hot Reload
Second Hot Reload & IIS
Hi Berke,
Have you tried to include the code I attached in my previous comment?
Regards,
Lauris Stepanovs,
Keenthemes Support Team
Hi Berke,
I appreciate you bringing this to our attention so that we can deal with it immediately.
Could you please add an example of the word you are using in your code?
You can try to add this service in Starterkit/Program.cs.
using System.Text.Unicode;
builder.Services.AddWebEncoders(o => {
o.TextEncoderSettings = new System.Text.Encodings.Web.TextEncoderSettings(UnicodeRanges.All);
});