Replace accents with normal letters

@jadbenn
give a try on following


having outcome:
grafik

System.Text.Encoding.GetEncoding(“ISO-8859-8”).GetBytes(accentedStr)

  • Alternate:System.Text.Encoding.GetEncoding(1251).GetBytes(accentedStr)
    System.Text.Encoding.UTF8.GetString(tempBytes)
12 Likes