ASCII

Returns the ASCII code of the first character in a string.

Analyze Syntax

func.ascii(<str>)

Analyze Examples

func.ascii('A')

┌────┐
 65  
└────┘

SQL Syntax

ASCII(<str>)

SQL Examples

SELECT ASCII('A');

┌────┐
 65  
└────┘