Smooth Font With Icons? #1107
Answered
by
KisonHe
KisonHe
asked this question in
Q&A - Fonts
-
Beta Was this translation helpful? Give feedback.
Answered by
KisonHe
Mar 30, 2021
Replies: 2 comments 2 replies
-
OK, I figured it out. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
KisonHe
-
There are a number of ways that a string or character can be represented. For example these work:
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OK, I figured it out.
I misunderstood Unicode with UTF-8. For any one might have same question, Unicode Bytes != UTF-8 Enocding
After changing
char icon[] = {0xe9,0x0d,0x00};
tochar icon[] = {0xEE, 0xA4, 0x8D, 0x00};
it works nicely.