Convert byte value to its base 2(Binary), base 8(Octal) and base 16(Hex) forms : byte « Data Types « C# / C Sharp






Convert byte value to its base 2(Binary), base 8(Octal) and base 16(Hex) forms

    

using System;

public class Example
{
   public static void Main()
   {

        byte[] numbers ={ 0, 15, 100, 213 };
        Console.WriteLine("{0}   {1,8}   {2,5}   {3,5}","Value", "Binary", "Octal", "Hex");
        foreach (byte number in numbers) {
           Console.WriteLine("{0,5}   {1,8}   {2,5}   {3,5}",
                             number, Convert.ToString(number, 2),
                             Convert.ToString(number, 8),
                             Convert.ToString(number, 16));
        }  
   }
}    

   
    
    
    
  








Related examples in the same category

1.An int, a short, and a float are included in a mathematical expression giving a float result.
2.Use byteUse byte
3.Format byte with X4
4.Read short from byte array
5.Write short value to byte array
6.Read Int 24 from byte array
7.Read int 32 from byte array
8.Write int 32 to byte array
9.Byte array Index Of
10.Convert int to byte
11.Convert double to byte
12.Using Convert.ToByte to convert value to byte
13.Parse string to byte and catch the OverflowException and FormatException
14.Parse hexadecimal number to byte decimal
15.byte default format and leading zeros format
16.Format byte value to its hexadecimal form
17.Byte value binary and operation
18.byte hexadecimal literal
19.Byte.MaxValue, Byte.MinValue
20.Parse string with a culture-specific format to byte with IFormatProvider
21.Parse byte value with trailing sign or leading sign
22.Converts Byte to string with the culture-specific formatting information.
23.byte value standard string format
24.Format a byte value to string with culture-specific formatting information.
25.Tries to parse string to Byte
26.Parse string to byte with number style setting
27.Convert Bytes To String
28.Count Non Zero Bytes
29.Get Unsigned Byte Value
30.Convert Byte to Short
31.Convert Byte to Integer
32.Get Compressed Int Size
33.Compress Int