CHAR

Learn how to use the CHAR string function in PlaidCloud Lakehouse. Returns the character for a given ASCII code - see syntax, examples, and output.

Returns the character for a given ASCII code.

Analyze Syntax

func.char(<code>)

Analyze Examples

func.char(65)

┌─────┐
 'A'  
└─────┘

SQL Syntax

CHAR(<code>)

SQL Examples

SELECT CHAR(65);

┌───┐
 A  
└───┘