Course
Simulator
More
Premium
Log in
MySQL Function Reference
Functions
CHAR
CHAR
Returns a string created by concatenating a sequence of ASCII codes
MySQL 8.1
CHAR
(
num
,
[
num
,
]
.
.
.
)
num
Numeric ASCII code to return a character
Examples
MySQL 8.1
SELECT
CHAR
(
72
,
105
)
;