So, I have a string that is actually UTF encoded characters with the ASCII representation codes stripped out: "537465616d6c696e6564" This would be represented in ASCII encoded UTF as \x53\x74\x65 [...]
I've tried to Regexp replace in \x at the correct positions, byte encoding it and reading it back as UTF, but to no avail.
What's the most effective way of turning the ASCII string into readable UTF in C#?