Skip to content

chr

const chr: (code: number) => string = builtins.chr

Defined in: packages/pythonlib/src/index.ts:173

Return the string representing a character at the given Unicode code point.

Parameters

ParameterTypeDescription
codenumberThe Unicode code point

Returns

string

A single-character string

See

Python chr()