Beginning in c#, haven't seen a duplicate. What I want to do is:
this string: İntersport
transform to this string: \u0130ntersport
I found a way to convert everything in unicode but not to convert only the special character.
thanks in advance for your help
edit:
I have tried your solution:
string source = matchedWebIDDest.name;
string parsedNameUnicode = string.Concat(source.Select(c => c < 32 || c > 255 ? "\\u" + ((int)c).ToString("x4") : c.ToString()));
But I get : "System.Linq.Enumerable+WhereSelectEnumerableIterator`2[System.Char,System.String]"