Last Modified: 9/8/2021
Converts a single character String into its numerical ASCII value.
| Name | Type | Required | Description |
| StringValue | String | Yes | The String you want to get the ASCII value for |
| Syntax: Asc(<StringValue>) |
|
b$ = "Testing" a = Asc(b$) Print a |