I have been looking around ocn Google and Stackoverflow but haven't found what I needed, but my question seems quite simple. Anyhow;
What is the way to convert a string of RTF special characters such as "\'d3\'d6" (In this case Russian) to unicode chars or string using C#?
any of the following should help:
\'d3\'d6
are hexadecimal value[s], based on the specified character set. so you could write your own processing function, like splitting the the string at \'
s, converting hex to char, rejoining it, converting to unicode.