Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
408 B
Plaintext
Raw Normal View History

{
"name": "ascii",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["String"],
"description": "Returns the unicode code associated with the first character of a string.",
"arguments": [{
"arg": "string",
"description": "the string to convert to unicode code"
}],
"examples": [{
"expression": "ascii('Q')",
"returns": "81"
}],
"tags": ["code", "first", "associated", "character", "unicode"]
}