Home

1000100001000111

1000100001000111 is a 16-bit binary numeral. As written, it represents the unsigned value 34887 in decimal and 0x8847 in hexadecimal. In two's complement signed interpretation, the value is -30649, since 0x8847 is greater than 0x7FFF.

The bit pattern contains ones in the most significant bit and in three other positions: bit15, bit11,

If interpreted as two ASCII bytes in big-endian order, the high byte is 0x88 and the low

In a broader sense, 1000100001000111 can serve as a simple example in discussions of data representation, binary

---

bit6,
and
bits
2,
1,
and
0.
In
hexadecimal
form,
this
corresponds
to
the
word
0x8847.
Such
patterns
are
commonly
used
in
digital
logic
as
a
test
word
or
as
a
sample
bitfield
to
illustrate
bit
extraction,
masking,
or
endian
considerations.
byte
is
0x47;
0x88
is
a
non-printable
character
in
ASCII,
while
0x47
corresponds
to
the
letter
'G'.
In
little-endian
order,
the
bytes
would
be
0x47
followed
by
0x88,
yielding
a
printable
'G'
followed
by
a
non-printable
character.
Because
of
this,
the
string
does
not
encode
a
clear
textual
message
without
additional
context.
arithmetic,
and
bitwise
operations.
It
is
sometimes
used
as
a
nontrivial
fixed
pattern
for
teaching
purposes,
such
as
demonstrating
bit
masking,
shifting,
or
word-aligned
data
handling
in
computer
architecture
and
digital
design.