4 | 000000100 | 0x4 | |||
64 | 001000000 | 0x40 | |||
0x1f0 | 111110000 | 496 |
12 | 0001100 | 0xc | |||
| | -2 | 1111110 | -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. | |
= | -2 | 1111110 | -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. | |
& | 107 | 1101011 | 0x6b | ||
= | 106 | 1101010 | 0x6a |
192.168.0.1 | 11000000.10101000.00000000.00000001 |
255.0.0.0 | 11111111.00000000.00000000.00000000 |
127.0.0.1
— enter single or multiple IP addresses (separated by space) to see their binary representation192.168.0.1/8
— subnet mask notations are supported as wellsubnet 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&
— bitwise AND|
— bitwise inclusive OR^
— bitwise exclusive XOR~
— bitwise NOT<<
— left shift>>
— sign propagating right shift>>>
— zero-fill right shiftBitiwseCmd 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).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).