Hurricane icon indicating copy to clipboard operation
Hurricane copied to clipboard

Tags

Open VicLo2020 opened this issue 4 years ago • 0 comments

Hello Tags are displayed incorrectly in Cyrillic. You must use tag recoding.

Example: public string toUtf8(string unknown) { if (string.IsNullOrEmpty(unknown)) return string.Empty; return new string(unknown.ToCharArray(). Select(x => ((x + 848) >= 'А' && (x + 848) <= 'ё') ? (char)(x + 848) : x). ToArray()); }

VicLo2020 avatar Oct 17 '20 02:10 VicLo2020