I want to create a custom data type which is 4 bits (nibble).
One option is this -
byte source = 0xAD; var hiNybble = (source & 0xF0) >> 4; /