CHAR

Converts a number into a character according to the current code table. The number can be a two-digit or three-digit integer number.

127보다 큰 코드의 사용 가능 여부는 사용하는 시스템의 문자 매핑(예를 들어 iso-8859-1, iso-8859-2, Windows-1252, Windows-1250)에 따라 달라지므로 호환되지 않을 수 있습니다.

Syntax

CHAR(Number)

Number is a number between 1 and 255 representing the code value for the character.

Example

=CHAR(100) returns the character d.

="abc" & CHAR(10) & "def" inserts a newline character into the string.