Table of Contents

Start Functions Events Constants Types Language Articles

Function: llChar

string llChar(integer code)

Given a Unicode codepoint (or ASCII code), return the corresponding Unicode character.

Parameters

code

The Unicode codepoint of the character to return.

Return value

The Unicode character corresponding to the given codepoint, or a question mark "?" if the code was negative.

Notes

Short examples

string s = llChar(65); // sets s to the letter "A"
llOwnerSay(llChar(9829)); // displays a heart, "♥"
llOwnerSay(llChar(0x2665)); // same

See also