invalid digit "8" in octal constant

I am trying to use ESP_NOW on my ESP8266-12e. One of the lines of code is

uint8_t broadcastAddress[] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF};

so I put

uint8_t broadcastAddress[] = {F0:08:D1:CE:FB:BC};

But I get an error
invalid digit "8" in octal constant
I have tried to eliminate the 0 but then I get another error. How do I correct this?

Why are you using a different format for the one that doesn't compile? The separator is the first one is a comma so why use a colon? For hex numbers you need to put 0x in front.

ANY numeric constant that begins with '0' followed immediately by one or more decimal digits, will be interpreted as Octal. If you want it interpreted as HEX, precede it with "0x". If you want it interpreted as Binary, precede it with "0b". If you want it interpreted as decimal, REMOVE the leading '0'.