char()

Description:

Get the corresponding characters of the given Unicode or ASCII code.

Syntax:

char(int)

Note:

Parameter int is Unicode or ASCII code. The function gets its corresponding characters.

 

Under normal circumstances, English characters and their extended characters are recorded in ASCII code; Chinese, Japanese, Korean, and other Asian characters are recorded in Unicode characters.

Parameter:

int

Integer expression, Unicode code or ASCII code.

Return value:

Character

Example:

char(87)

'W'

char(66)

'B'

Related function:

asc()