BitwiseCmd

>4 0b1000000 0x1f0
40000001000x4
640010000000x40
0x1f0111110000496
>12|-2&107
1200011000xc
|-21111110-0x2
Two's Complement

This is a negative number. It's binary representation is inverted using Two's Complement operation.

To see full in-memory binary representation, go to Settings and enable Annotate Data Types toggle.

=-21111110-0x2
Two's Complement

This is a negative number. It's binary representation is inverted using Two's Complement operation.

To see full in-memory binary representation, go to Settings and enable Annotate Data Types toggle.

&10711010110x6b
=10611010100x6a
>192.168.0.1/8
192.168.0.111000000.10101000.00000000.00000001
255.0.0.011111111.00000000.00000000.00000000
>help
Bitwise Calculation Commands
  • 23 | 34 — type bitwise expression to see the result in binary
  • 23 34 — type one or more numbers to see their binary representations
IP Address & Networking Commands
  • 127.0.0.1 — enter single or multiple IP addresses (separated by space) to see their binary representation
  • 192.168.0.1/8 — subnet mask notations are supported as well
  • subnet 192.168.24.1/14 — display information about a subnet (network address, broadcast address, etc.)
  • vpc 192.168.24.1/24 — see how VPC network address bits are divided between VPC address, Subnets, and Hosts
Color Theme Commands
  • light — set the Light color theme
  • dark — set the Dark color theme
  • midnight — set the Midnight color theme
Other Commands
  • clear — clear output pane
  • help — display this help
  • whatsnew — display changelog
  • em — turn On/Off Emphasize Bytes
  • about — about the app
  • guid — generate v4 GUID
Supported Bitwise Operations
  • & — bitwise AND
  • | — bitwise inclusive OR
  • ^ — bitwise exclusive XOR
  • ~ — bitwise NOT
  • << — left shift
  • >> — sign propagating right shift
  • >>> — zero-fill right shift
Operator precedence is IGNORED. Operators are executed left-to-right.
Supported Number Types NEW

BitiwseCmd no longer uses the browser's JavaScript engine for the execution of bitwise operations. It has its own calculator implementation which brings supports bitwise operations on the following signed and unsigned data types:

  • 8-bit integer - a.k.a Byte. Numbers entered with b or ub suffixes for signed and unsigned versions respectively (e.g. 10b 10ub).
  • 16-bit integer - a.k.a Short. Numbers entered with s or us suffixes for signed and unsigned versions respectively (e.g. 10s 10us).
  • 32-bit integer - numbers entered without suffixes that fall in range of -2147483648 and 2147483647. Use u suffix to denote an unsigned version of 32-bit integer. This is a default number type.
  • 64-bit integer - a.k.a Long. Numbers entered without suffixes and exceed the 32-bit range or entered with l and ul suffixes for signed and unsigned versions respectively (e.g. 10l 10ul).
Tip

You can click on bits to flip them in number inputs (e.g. 2 4) or IP addresses (e.g. 192.168.0.0/8).