Skip to content

Character

See Also: String Functions, Ascii

Purpose

The Character function 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 Unicode Table for an overview of all the available characters and symbols.

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

Example

Move (Character(9825)) to sHeart

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