0x3FFF
0x3FFF is a hexadecimal numeric constant used in computing. It represents the decimal value 16383, which is 2^14 - 1, the maximum unsigned value that can be stored in 14 bits. In binary it is 0011 1111 1111 1111, and in 16-bit words the high byte is 0x3F and the low byte is 0xFF; in little-endian memory it may appear as FF 3F.
Because it has all lower 14 bits set, 0x3FFF is often used as a bitmask to extract
In software and hardware design, 0x3FFF appears in documentation and code for masking, indexing, or parameter