Fonction ChrW [VBA]
Renvoie le caractère Unicode qui correspond au code de caractère spécifié.
ChrW(Expression As Integer)
String
Expression: Numeric variables that represent a valid 16 bit Unicode value (0-65535). (To support expressions with a nominally negative argument like ChrW(&H8000) in a backwards-compatible way, values in the range −32768 to −1 are internally mapped to the range 32768 to 65535.) An empty value returns error code 5. A value out of the range [0,65535] returns error code 6.
Sub ExampleChrW
' Cet exemple insère les lettres grecques alpha et oméga dans une chaîne.
MsgBox "De "+ ChrW(913)+" à " + ChrW(937)
' L'impression s'affiche dans la boîte de dialogue comme suit : De Α à Ω
End Sub