Convert between characters and ASCII codes
- Last UpdatedJul 23, 2024
- 1 minute read
In a script, you can convert characters of a string to ASCII codes and ASCII codes back to characters by using the StringChar() and StringASCII() functions.
These functions do not support multiple byte character sets. Only characters in the range of 0-255 are supported.
Using ASCII codes is useful if you wish to perform some numeric calculation on a string (for example for encoding a string).