In order to convert binary to hex, you must first break the 8 bit binary into two 4 bit nibbles, then add up each nibble value separately which will result in the hex value.
Example: 01010101 => 0101 => 5 and 0101 => 5 , now add the two nibble values separately in hex format using "0x" => 0x55
Select one of the following: