TextToUnicode Command
- TextToUnicode( "<Text>" )
-
Turns the text into a list of Unicode numbers, one for each character.
-
TextToUnicode("Some text")
gives you the list of Unicode numbers {83, 111, 109, 101, 32, 116, 101, 120, 116}. -
If text1 is "hello", then
TextToUnicode(text1)
gives you the list of Unicode numbers {104, 101, 108, 108, 111}.
See also UnicodeToText Command and LetterToUnicode Command. |