retrotron
thinking is design
I need to step through a string (character by character) and change each character to a different unicode value. How can I do that?
For example, suppose I have a string "abc" (unicode: x61 x62 x63). I want to step through each character in that string and change the unicode value to a different value: x44 x45 x46 ("DEF"). How do I do that?
For example, suppose I have a string "abc" (unicode: x61 x62 x63). I want to step through each character in that string and change the unicode value to a different value: x44 x45 x46 ("DEF"). How do I do that?