Cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

How can I use the Unicode escape sequence arrow

ANSWERED

Hello There,

I am trying to display the dart arrow ⮝ as Unicode:

updatedLabel.text = "\u2b9f";

but all its displaying on my Fitbit ionic screen is a question mark ?. how can I go about displaying the dart arrow symbol. Any suggestions? thanks in advance

best regards

SNK

SN
Best Answer
0 Votes
1 BEST ANSWER

Accepted Solutions

Looks like that one isn't supported, these 2 work:

 

myLabel.text = "→ ➡";

Or, you could try FitFont.

https://www.npmjs.com/package/fitfont

 

View best answer in original post

Best Answer
2 REPLIES 2

Looks like that one isn't supported, these 2 work:

 

myLabel.text = "→ ➡";

Or, you could try FitFont.

https://www.npmjs.com/package/fitfont

 

Best Answer

thank you, this will have to do for now 

SN
Best Answer
0 Votes