This question already has an answer here:
- Unicode characters string 3 answers
is it possible to convert a string like "\u00e8" (Got it by reading a WebRequestResponse with Streamreader) to it's unicode char(è)? Tried many things with Encoding, but nothing works.
You can use
Regex.Unescape()
, which unescapes any escape sequences that are valid for a Regex (including\uXXXX
). Note that it also unescapes other sequences like\t
,\n
, and\[
.