Turn OFF the ith bit - power down with AND and NOT!
To turn OFF (set to 0) the ith bit of a number, use AND with an inverted mask:
The inverted mask
~(1 << i) has all bits 1
except bit i. ANDing with this mask forces bit i to 0, leaving other
bits unchanged.