You must log in or register to comment.
Same energy as
chr(sum(range(ord(min(str(not())))))))
'ඞ'
Very sus
For those ASCIIng themselves why this works, 0x20 is 00100000 in binary, so it only flips one bit, increasing or decreasing the character’s value by 32. Capital ‘A’ is 65 and lowercase ‘a’ is 97, an offset of exactly 32! The rest of the uppercase and lowercase letters follow in order.