C# Convert Unicode chars [duplicate]

2019-07-24 23:35发布

问题:

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.

回答1:

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 \[.