Quoting from MDN Left Shift Operator
This operator shifts the first operand the specified number of bits to
the left. Excess bits shifted off to the left are discarded. Zero bits
are shifted in from the right.
Quoting Bitwise Shift Operators
Shift operators convert their operands to 32-bit integers in
big-endian order and return a result of the same type as the left
operand. The right operand should be less than 32, but if not only the
low five bits will be used.
Binary of 6363201 is 11000010001100001000001.
When you left shift 6363201 << 16, it becomes 417018740736 which in binary is 110000100011000010000010000000000000000
Now, 32 bits from the least significant bits are retained, the actual bits retained are 00011000010000010000000000000000 which corresponds to 406913024