ChrW Function [VBA]

Returns the Unicode character that corresponds to the specified character code.

แžšแžผแž”โ€‹แžแŸ†แžŽแžถแž„โ€‹แž–แŸ’แžšแž˜แžถแž“

This function or constant is enabled with the statement Option VBASupport 1 placed before the executable program code in a module.


Syntax:

ChrW(Expression As Integer)

Return value:

String

Parameters:

Expression: Numeric variables that represent a valid 16 bit Unicode value (0-65535). An empty value returns error code 5. A value out of the range [0,65535] returns error code 6.

Error codes:

5 แž€แžถแžšโ€‹แž แŸ…โ€‹แž”แŸ‚แž”แž”แž‘โ€‹แž˜แžทแž“โ€‹แžแŸ’แžšแžนแž˜แžแŸ’แžšแžผแžœ

6 แž›แžพแžŸโ€‹แž…แŸ†แžŽแžปแŸ‡

Example:

Sub ExampleChrW

 ' This example inserts the greek letter Alpha and Omega in a string.

 MsgBox "From "+ ChrW(913)+" to " + ChrW(937)

 ' The printout appears in the dialog as: From ฮ‘ to ฮฉ

End Sub