Returns the Unicode character of a number that is referenced by the given numeric value.
Sample Usage
UNICHAR(68)
UNICHAR(32)
UNICHAR(C5)
Syntax
UNICHAR(number)
- number - The number whose corresponding Unicode character is to be returned.
Examples
UNICHAR(68) returns the character 'D'.
UNICHAR(32) returns a space character. ' '.
UNICHAR(C5) returns the the Unicode character of the number in cell C5.
Notes
- number should be greater than 0.
- If number does not have a Unicode character, the method returns a #VALUE error.
- It is possible that the method’s output changes over time.