views:

180

answers:

2
I have the unicode for that char, how do I display it?

0x023D2A

textField.text = ???;


i have have the name of the character.
can I reference it by name?
+1  A: 

Try this:

textField.text = String.fromCharCode(0x023D2A)
Lars
A: 

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.)

whybird