-
I use the typicons font in Haspmota, and I'm trying to change symbol dynamically So how I can convert for example typicon E11D to Berry's escape sequence? Please give me an example what conversion must be done, so I can make it myself and don't bother you. Thank you in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
What you need is not so much a Berry escape sequence, but instead converting from UTF-16 to UTF-8 encoding. In this case, that could be If you do not love bit-twiddling, you could also do the conversion using a bit of Berry code, something like this:
|
Beta Was this translation helpful? Give feedback.
What you need is not so much a Berry escape sequence, but instead converting from UTF-16 to UTF-8 encoding. In this case, that could be
p1b2.text='\xEE\x84\x9D'
(3 bytes with hex escapes)If you do not love bit-twiddling, you could also do the conversion using a bit of Berry code, something like this: