Home

111010000

111010000 is a binary numeral consisting of nine digits. It is written in base-2, using only the digits 0 and 1. Without additional context, it can represent a numeric value, a bit pattern, or a label in a computer-related setting.

In decimal, 111010000 equals 464. In hexadecimal, it is 0x1D0. As a 9-bit pattern, it would fit

The bits set to 1 are in positions 8, 7, 6, and 4 (counting from 0 as

Context and usage: Such a binary string can appear in documentation as an example of a flag

See also: binary number, bitmask, hexadecimal notation, binary and computer representations.

in
a
field
wider
than
a
byte
but
narrower
than
a
typical
word
in
many
systems.
the
least
significant
bit).
The
value
is
2^8
+
2^7
+
2^6
+
2^4
=
256
+
128
+
64
+
16
=
464.
The
pattern
can
be
used
as
a
bitmask
to
enable
four
flags
in
a
9-bit
register
or
as
part
of
an
encoding
scheme
where
specific
bit
positions
carry
meaning.
sequence,
or
as
part
of
an
encoding
scheme
in
hardware
designs,
digital
communications,
or
software
configuration.
In
most
modern
computers,
data
is
organized
in
8-
or
16-bit
units,
but
smaller
or
larger
fields
are
common
in
protocol
headers
or
peripheral
interfaces.