ID EN
String Functions and Operators

ASCII(str)

MySQL 8.4

Returns the numeric value of the leftmost character of the string str. Returns 0 if str is the empty string. Returns NULL if str is NULL. ASCII() works for 8-bit characters.

Syntax

MYSQL
SELECT ASCII('2');
50
SELECT ASCII(2);
50
SELECT ASCII('dx');
100

Examples

Example

See also the ORD() function.

MYSQL
SELECT ASCII('2');
50
SELECT ASCII(2);
50
SELECT ASCII('dx');
100