Ad
  • Custom User Avatar

    The ASCII values for 'a-z' are 97-122 (0b1100001-0b1111010), and 'A-Z' are 65-90 (0b1000001-0b1011010).
    We only need the last 5 bits (0b11111 is 31) (since the first two bits are the same) to build our bitmask.