Difference between revisions of "NXSL:chr"
Jump to navigation
Jump to search
Tomas Kirnak (talk | contribs) |
|||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
Return a character from it's UNICODE | Return a character from it's UNICODE code. | ||
== Syntax == | == Syntax == | ||
chr('' | chr(''code''); | ||
Line 12: | Line 12: | ||
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
| '' | | ''code'' || A character's UNICODE code. | ||
|} | |} | ||
Line 18: | Line 18: | ||
== Return Value == | == Return Value == | ||
A character. | A string consisting of single character. | ||
== Examples == | == Examples == | ||
chr(50) -> P | chr(50) -> "P" |
Revision as of 16:32, 22 October 2014
Return a character from it's UNICODE code.
Syntax
chr(code);
Parameters
code | A character's UNICODE code. |
Return Value
A string consisting of single character.
Examples
chr(50) -> "P"