C# byte[] to hex string - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T02:51:43Z http://stackoverflow.com/feeds/question/623104 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/623104/c-byte-to-hex-string 2 C# byte[] to hex string acidzombie24 2009-03-08T05:20:00Z 2009-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 -1 Answer by Gregory Higley for C# byte[] to hex string Gregory Higley 2009-03-08T05:27:31Z 2009-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#623114 5 Answer by Quintin Robinson for C# byte[] to hex string Quintin Robinson 2009-03-08T05:28:27Z 2009-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#623119 0 Answer by Ash for C# byte[] to hex string Ash 2009-03-08T05:32:16Z 2009-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#623134 2 Answer by Michael Buen for C# byte[] to hex string Michael Buen 2009-03-08T05:49:20Z 2009-03-08T07:19:53Z <p>Hex, Linq-fu:</p> <pre><code>string.Join("",ba.Select(b =&gt; b.ToString("X2").ToArray())) </code></pre> http://stackoverflow.com/questions/623104/c-byte-to-hex-string/623184#623184 14 Answer by Guffa for C# byte[] to hex string Guffa 2009-03-08T06:56:19Z 2009-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>