Analyse the following C-code and give the content of the variable result in hex notation:
unsigned int Value = 0x12;
unsigned char Number=0x34;
unsigned int Result = 0;
Value = Value << 8;
Value = Value Number;
Result = ((Result + Value) & 0xA4D0);