ChrW Function [VBA]

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

warning

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


தொடரமைப்பு:


ChrW(Expression As Integer)

திரும்பும் மதிப்பு:

String

அளவுருக்கள்:

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.

பிழையான குறியீடுகள்:

5 செல்லாத செயல்முறை அழைப்பு

6 நிரம்பிவழிதல்

எடுத்துக்காட்டு:


Sub ExampleChrW
 ' This example inserts the Greek letters alpha and omega in a string.
 MsgBox "From "+ ChrW(913)+" to " + ChrW(937)
 ' The printout appears in the dialog as: From Α to Ω
End Sub

Please support us!