Bases & Bitwise
Decimal, Hex, Binary & Octal
Soulver supports base 2 (binary), octal (base 8) and hexadecimal (base 16), with various formats supported to convert between them
Bitwise Operators
Operator
Name
& or AND
Bitwise AND
| or OR
Bitwise OR
xor or XOR
Bitwise XOR
<<
Bitwise left shift
>>
Bitwise right shift
Last updated
Was this helpful?