useful_oxymoron Posted October 24, 2009 Posted October 24, 2009 Does anyone know what arithmetic would I need to perform to change COMPUTER into computer?
moth Posted October 24, 2009 Posted October 24, 2009 in ascii 'A' is 20(in hexadecimal) characters from 'a' so you could add hex 20(32 decimal) to each letter in 'COMPUTER' and the result would be 'computer'. 20H = space in ascii so COMPUTER + ' '(8 spaces) = computer. i don't know if this works for unicode charaters i just remember this from my DOS days.
useful_oxymoron Posted October 25, 2009 Author Posted October 25, 2009 Thanks, I wasn't sure if that was the way to do it.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now