Character

See Also: String Functions, Ascii

Purpose

Character returns the character related to a specified code point.

Return Type

String

Syntax

(Character( {value} ))

What It Does

Use the character function to get a character as a string value specified by the provided code point. The code point is assigned by the Unicode standard and up until character 127 it matches the ASCII table. See https://unicode-table.com/ for an overview of all the available characters and symbols.

Note that code points are commonly displayed as hexadecimal values, where integers are usually displayed in decimal form.

Move (Character(9825)) to sHeart

In this example sHeart will contain a symbol of a heart.