I have the following unicode for a char:
0x023D2A
How do I display it using:
textField.text = ???;
I have have the name of the character. Can I reference it by name?
Try this:
textField.text = String.fromCharCode(0x023D2A)
textField.text = "Adobe\u00ae" should give you "Adobe®". Replace your Unicode as required. (Note: I don't have Flash with me where I am; I am posting the above untested.)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With