C# byte[] to hex string - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T02:51:43Zhttp://stackoverflow.com/feeds/question/623104http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/623104/c-byte-to-hex-string2C# byte[] to hex stringacidzombie242009-03-08T05:20:00Z2009-03-08T07:19:53Z
<p>How do i convert a byte[] to a string, every time i attempt it i get System.Byte[] instead of the value.</p>
<p>Also How do i get the value in Hex instead of a decimal?</p>
http://stackoverflow.com/questions/623104/c-byte-to-hex-string/623111#623111-1Answer by Gregory Higley for C# byte[] to hex stringGregory Higley2009-03-08T05:27:31Z2009-03-08T05:27:31Z<p>You have to know the encoding of the string represented in bytes, but you can say <code>System.Text.UTF8Encoding.GetString(bytes)</code> or <code>System.Text.ASCIIEncoding.GetString(bytes)</code>. (I'm doing this from memory, so the API may not be exactly correct, but it's very close.)</p>
<p>For the answer to your second question, see <a href="http://stackoverflow.com/questions/190531/hex-operations-in-c">this question</a>.</p>
http://stackoverflow.com/questions/623104/c-byte-to-hex-string/623114#6231145Answer by Quintin Robinson for C# byte[] to hex stringQuintin Robinson2009-03-08T05:28:27Z2009-03-08T05:28:27Z<p>Well I don't convert bytes to hex often so I have to say I don't know if there is a better way then this, but here is a way to do it.</p>
<pre><code>StringBuilder sb = new StringBuilder();
foreach (byte b in myByteArray)
sb.Append(b.ToString("X2"));
string hexString = sb.ToString();
</code></pre>
http://stackoverflow.com/questions/623104/c-byte-to-hex-string/623119#6231190Answer by Ash for C# byte[] to hex stringAsh2009-03-08T05:32:16Z2009-03-08T05:32:16Z<p>As others have said it depends on the encoding of the values in the byte array. Despite this you need to be very careful with this sort of thing or you may try to convert bytes that are not handled by the chosen encoding.</p>
<p>Jon Skeet has a <a href="http://www.yoda.arachsys.com/csharp/unicode.html" rel="nofollow">good article</a> about encoding and unicode in .NET. Recommended reading.</p>
http://stackoverflow.com/questions/623104/c-byte-to-hex-string/623134#6231342Answer by Michael Buen for C# byte[] to hex stringMichael Buen2009-03-08T05:49:20Z2009-03-08T07:19:53Z<p>Hex, Linq-fu:</p>
<pre><code>string.Join("",ba.Select(b => b.ToString("X2").ToArray()))
</code></pre>
http://stackoverflow.com/questions/623104/c-byte-to-hex-string/623184#62318414Answer by Guffa for C# byte[] to hex stringGuffa2009-03-08T06:56:19Z2009-03-08T06:56:19Z<p>There is a built in method for this:</p>
<pre><code>byte[] data = { 1, 2, 4, 8, 16, 32 };
string hex = BitConverter.ToString(data);
</code></pre>
<p>Result: 01-02-04-08-10-20</p>
<p>If you want it without the dashes, just remove them:</p>
<pre><code>string hex = BitConverter.ToString(data).Replace("-", string.Empty);
</code></pre>
<p>Result: 010204081020</p>
<p>If you want a more compact representation, you can use Base64:</p>
<pre><code>string base64 = Convert.ToBase64String(data);
</code></pre>
<p>Result: AQIECBAg</p>