Builtin

char_code

char_code{char:str, code:int}

A relation generator. Can convert character char into its Unicode code point (code) and vice-versa.

Examples

char to code
char_code(char:="☉")
code
9737

code to char
char_code(code:=10781)
char