Bitwise Flag Calculator

Current Flags Value: {{ computedFlags }}

(Binary: {{ computedFlags.toString(2).padStart(4, '0') }})

{{ checkFlagName }}({{ decimalOperation }}): {{ checkResult ? 'Flag is set' : 'Flag is not set' }}

Binary Operation: {{ binaryOperation }}

Check Flags by Number

Possible Flags: {{ flag }}

All Possible Flags

Decimal Binary Flags
{{ num }} {{ num.toString(2).padStart(4, '0') }} {{ flag }}

Utility

2^x = {{ calculatePower }}