Simpler Code for 7 Segment LED and Shift Register

byte c = B01100000;
byte d = 0b01100000;
void setup(){
  Serial.begin(9600);
  Serial.println(c);
  Serial.println(d);
}
void loop(){
}

Apparently both work fine. Only difference (looking at the screen only !) is that the word B01100000 is automatically displayed in blue while the word 0b01100000 is displayed in black as normal text.