Home

111100000110

111100000110 is a twelve-bit binary string. In hexadecimal, it corresponds to the three-digit value F06, and in unsigned decimal it equals 3846.

When interpreted as a signed value in two's complement with 12 bits, the leftmost bit denotes negativity,

Pattern analysis: grouped as 1111 0000 0110, it comprises the high nibble 1111, middle nibble 0000, and

In computing contexts, such a 12-bit field might appear as a register value, an offset, a color

See also: binary numeral system, hexadecimal notation, two's complement, fixed-width integers.

yielding
-250.
This
illustrates
how
the
same
bit
pattern
can
represent
different
numbers
depending
on
the
chosen
interpretation.
low
nibble
0110.
This
layout
also
makes
it
a
potential
example
of
12-bit
color
in
a
4-4-4
RGB
scheme,
corresponding
to
red=15,
green=0,
blue=6.
component
in
a
12-bit
color
format,
or
as
part
of
protocol
encodings
that
use
fixed-width
bitfields.
It
is
not
a
standard
ASCII
or
BCD
encoding.