ChrW Function [VBA]

Mengembalikan karakter Unicode yang sesuai dengan kode karakter yang ditentukan.

warning

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


Sintaksis:


ChrW(charcode As Integer) As String

Nilai balikan:

String

Parameter:

charcode: Numeric expression 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 to 65535] returns error code 6.

Kode kesalahan:

5 Tidak sah dalam pemanggilan prosedur

6 Tumpang tindih

Contoh:


Sub ExampleChrW
    ' Sebuah contoh memasukkan huruf Yunani alfa dan omega dalam sebuah string.
    MsgBox "From " + ChrW(913) + " to " + ChrW(937)
    ' Cetakan muncul dalam dialog sebagai: Dari A ke Ω
    MsgBox ChrW(charcode := 116) ' "t" lowercase T letter
End Sub

Mohon dukung kami!