------
## 最终结论
```python
def even_bit_toggle_number(n):
    # Create a mask with all even bits set to 1
    mask = 0xAAAAAAAA  # This is the hexadecimal representation where even bits are set
    # Toggle the even bits using XOR operation
    return n ^ mask
```