SQLite - char() function
Description
The char(X1,X2,...,XN) function returns a string composed of characters having the unicode code point values of integers X1 through XN, respectively.
Syntax:
char(X1,X2,...,XN)
Arguments
Name | Description |
---|---|
X1,X2, ...XN | Integers whose character values (according to the ASCII table) are to be retrieved. |
Pictorial Presentation

Example: SQLite char() function
The following SQLite statement returns character values (according to the ASCII table) of the integers 67, 72, 65 and 82.
sqlite>SELECT char(67,72,65,82);
Sample Output:
CHAR
Previous:
changes()
Next:
coalesce()
- Weekly Trends
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join
- JavaScript functions Exercises
- Python Tutorial
- Python Array Exercises
- SQL Cross Join
- C# Sharp Array Exercises