Suche
Beiträge, die mit carbrain getaggt sind
In Unicode ist die Kleinschrift (lower case) von
"CAR" 🚗
"no pedestrian" 🚷
>>> chr(ord('🚗') ^ 0x20)
'🚷'
Eine Schelm, dey Böses dabei denkt. @SheDrivesMobility
#Mobilitätswende #carbrain
Source https://hachyderm.io/@simontatham/113922876131389772
"CAR" 🚗
"no pedestrian" 🚷
>>> chr(ord('🚗') ^ 0x20)
'🚷'
Eine Schelm, dey Böses dabei denkt. @SheDrivesMobility
#Mobilitätswende #carbrain
Source https://hachyderm.io/@simontatham/113922876131389772
Simon Tatham (@simontatham@hachyderm.io)
In the old #ASCII days, you could change a letter between upper and lower case by XORing its character code with 0x20. Of course, if you tried this with anything that wasn't a letter, you'd get nonsense results.Hachyderm.io