Returns the character specified by the code number.
Söz dizimi
CHAR(number)Bağımsız değişkenler
numberzorunlu
A number between 1 and 255 specifying the character you want.
The CHAR function converts a numeric code into its corresponding character based on the character set used by your computer. It is commonly used to insert special characters, such as line breaks or symbols, into text strings.
=CHAR(65)→AReturns the uppercase letter A, which corresponds to the ASCII code 65.
=CHAR(10)→Line breakReturns the line feed character, often used to force a line break within a cell.
Select the cell
Click on the cell where you want to display the character.
Enter the formula
Type =CHAR(number) and replace 'number' with the desired character code.
The CHAR function supports numbers from 1 to 255.