For instance, the magic number below is really `16r3FFFFF` (a mask for the 22 least significant bits) ``` smalltalk Character >> charCode ^ self asInteger bitAnd: 4194303 ```
For instance, the magic number below is really
16r3FFFFF(a mask for the 22 least significant bits)