CChar Function

Syntax:

CChar(expr)

Group:

Conversion

Description: 

Converts a number or string value to a single character value.

Parameters:

Parameter

Description

expr

Convert a number or string value to an single character value. This is the first character of the string conversion.

Example:

Sub Main
  Debug.Print CChar(33) '"!"
End
Sub