Home

0001001110110011

0001001110110011 is a 16-bit binary numeral that can appear in computing as a raw bit pattern or data value. As a numeric value, it equals 5043 in decimal and 0x13B3 in hexadecimal. If read as two bytes in big-endian order, the bytes are 0x13 and 0xB3; in little-endian order, they are 0xB3 and 0x13.

As text, the pattern does not correspond to printable ASCII characters and is unlikely to convey readable

Bitwise interpretation may include viewing the string as a bitmask. The pattern contains eight 1 bits scattered

In computing contexts, 16-bit patterns like this are common in memory dumps, microcontroller registers, network frames,

text
on
its
own.
It
may
instead
function
as
a
bit
pattern
used
in
various
data
structures
or
protocols.
across
the
16
positions
(with
the
1s
located
at
bit
positions
12,
9,
8,
7,
5,
4,
1,
and
0,
counting
from
the
most
significant
bit
as
15
down
to
0).
This
kind
of
pattern
can
be
used
to
enable,
disable,
or
flag
specific
features
in
a
larger
data
word.
and
color
representations
(for
example,
in
16-bit
color
formats
such
as
RGB565).
The
exact
meaning
depends
on
how
the
bits
are
mapped
in
the
surrounding
data
and
the
specific
encoding
scheme
in
use.