Quote Originally Posted by @nthony View Post
even octal too eh... now binary really feels left out
might be C knows what exactly you are not looking for

Quote Originally Posted by @nthony View Post
I think in some circumstances hex would be more complex. i.e. when setting up OR-flags, its easier to see that none collide by specifying them in binary.
why would you even need to go to hex or for that matter any base? just take baste 10 and make simple operation like OR
Ex: (2 | 3) this is equivalent to (binary(2) OR binary(3))