char()

Description:

Get the corresponding characters according to the given Unicode or ASCII code.

Syntax:

char(int)

Note:

In general, all English characters and their extended characters are recorded in ASCII code; Chinese, Japanese, Korean, and other Asian characters are recorded in Unicode characters. ASCII is an 8-bit character set, and Unicode is a 16-bit character set, of which 3 bits are used to indicate the character type.

Parameter:

int

Integer expression, Unicode code or ASCII code

Return value:

Character

Example:

char(87)

'W'

char(66)

'B'

Related function:

asc()