How to find the ASCII value of any character in SQL Server?
424
15-Nov-2021
Ashutosh Kumar Verma
15-Nov-2021The ASCII() function is used to find the ASCII value of any character in SQL server.
Example:
SELECT ASCII('A');Output:
65
SELECT ASCII('?');Output:
63
SELECT ASCII('n');![]()
Output:![]()
110