Difference between revisions of "Documentation/How Tos/Calc: CHAR function"
From Apache OpenOffice Wiki
< Documentation | How Tos
m |
|||
Line 49: | Line 49: | ||
: returns <tt>'''H'''</tt>, representing character code 72. | : returns <tt>'''H'''</tt>, representing character code 72. | ||
− | {{Note|The international standard ODFF | + | {{Note|The international standard ODFF introduced the more versatile functions <tt>'''UNICODE'''</tt> and <tt>'''UNICHAR'''</tt>, which now are implemented in Calc.}} |
{{SeeAlso|EN| | {{SeeAlso|EN| |
Revision as of 17:43, 28 January 2024
CHAR
Returns a single text character, given a character code.
Syntax:
CHAR(number)
- number is the character code, in the range 1-255.
- CHAR uses your system's character mapping (for example iso-8859-1, iso-8859-2, Windows-1252, Windows-1250) to determine which character to return. Codes greater than 127 may not be portable.
Example:
CHAR(72)
- returns H, representing character code 72.
The international standard ODFF introduced the more versatile functions UNICODE and UNICHAR, which now are implemented in Calc. |
See Also