char()

Description:

According to the given Unicode or ASCII code, get the corresponding characters.

Syntax:

char(int)

Note:

In general, the English characters and their extended characters are all the ASCII code; Chinese, Japanese, Korean, and other Asian characters are all Unicode characters. ASCII character is an 8 bit character set, and Unicode character 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()