**FUNCTION:** `Asc(string) / Chr(charcode)`
**Description**
Convertit caractère<->code ASCII (selon encodage).
**Syntax**
`Asc(string) / Chr(charcode)`
**Paramètres**
– *(aucun)*
**Exemples**
« `vb
WScript.Echo Asc(« A »)
WScript.Echo Chr(65)
« `
**Output :** `65 ; A`