@ar It takes the boolean True
Turns it into a string, so 'True'
Gets the character with the lowest encoding value, which would be 'T' since it's the only capital letter
Gets the encoding value of it, so 0x54 or 84
Makes it a range from 0 to that number, so 0 to 84
Sums all numbers from 0 to 84, which is 3486
And that happens to be the value for the character ඞ

Insane