Best way to decode hex sequence of unicode characters to string - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T22:07:53Zhttp://stackoverflow.com/feeds/question/371096http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/371096/best-way-to-decode-hex-sequence-of-unicode-characters-to-string0Best way to decode hex sequence of unicode characters to stringValentin Vasilyev2008-12-16T12:01:38Z2008-12-16T12:38:28Z
<p>Hello,</p>
<p>What is the most code free way to decode a string:</p>
<pre><code>\xD0\xAD\xD0\xBB\xD0\xB5\xD0\xBA\xD1\x82\xD1\x80\xD0\xBE\xD0\xBD\xD0\xBD\xD0\xB0\xD1\x8F
</code></pre>
<p>to human string in C#?</p>
<p>This hex string contains some unicode symbols.</p>
<p>I know about </p>
<pre><code>System.Convert.ToByte(string, fromBase);
</code></pre>
<p>But I was wondering if there are some built-in helpers that asp.net internally uses.</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/371096/best-way-to-decode-hex-sequence-of-unicode-characters-to-string/371177#3711773Answer by gimel for Best way to decode hex sequence of unicode characters to stringgimel2008-12-16T12:38:28Z2008-12-16T12:38:28Z<p>In this site you are not likely to get a <em>code free way</em> (it's about code).
Decoding a <em>hex encoded byte array</em> is possible if you know the original encoding.</p>
<p>Guessing the encoding to be UTF8, decoding it with
<a href="http://msdn.microsoft.com/en-us/library/system.text.utf8encoding.aspx" rel="nofollow">System.Text.UTF8encoding</a>
yields the following 11 unicode characters <em>Cyrillic string</em>:</p>
<blockquote>
<p>CYRILLIC CAPITAL LETTER E,
CYRILLIC SMALL LETTER EL,
CYRILLIC SMALL LETTER IE,
CYRILLIC SMALL LETTER KA,
CYRILLIC SMALL LETTER TE,
CYRILLIC SMALL LETTER ER,
CYRILLIC SMALL LETTER O,
CYRILLIC SMALL LETTER EN,
CYRILLIC SMALL LETTER EN,
CYRILLIC SMALL LETTER A,
CYRILLIC SMALL LETTER YA,</p>
</blockquote>
<p>Once you figure how to get your data into a <code>Byte[]</code>,
the sample code in the above reference shows the way:</p>
<pre><code>// fill encodedBytes with original data
Byte[] encodedBytes = new Byte[] {0xD0,0xAD,0xD0,0xBB,0xD0,0xB5}; //...
UTF8Encoding utf8 = new UTF8Encoding();
String decodedString = utf8.GetString(encodedBytes);
</code></pre>