Forum Discussion
wkrasl
Dec 27, 2022Copper Contributor
Code vs Char Question
Hi. I know how to use Code and Char functions in theory, but not getting the expected results. I am working with filled circles (●) and open circles (○) as follows, where I need to use the Char fun...
- Dec 27, 2022
CODE and CHAR only work over the ASCII dataset. To extend the coverage to the Unicode dataset use the functions
= UNICODE(symbols) = UNICHAR(unicodes)
PeterBartholomew1
Dec 27, 2022Silver Contributor
CODE and CHAR only work over the ASCII dataset. To extend the coverage to the Unicode dataset use the functions
= UNICODE(symbols)
= UNICHAR(unicodes)
wkrasl
Dec 27, 2022Copper Contributor
Thank you!