Check out example codes for "how to convert from hexadecimal to binary in c#". It will help you in understanding the concepts better.
Code Example 1
private string hex2binary(string hexvalue){ string binaryval = ""; binaryval = Convert.ToString(Convert.ToInt32(hexvalue, 16), 2); return binaryval;}
Learn ReactJs, React Native from akashmittal.com