Answered
HTML Canvas - Add UNICODE or HTML Entity etc to Dynamic Text Field?
How do I add UNICODE or HTML Entity etc to a dynamic text field??
E.g.
root.streakAngle.text = streakAngle + '°';doesn't render ° as a degree symbol.
How do I add UNICODE or HTML Entity etc to a dynamic text field??
E.g.
root.streakAngle.text = streakAngle + '°';doesn't render ° as a degree symbol.
To include a Unicode character in a Javascript string, just use a Unicode escape sequence:
root.streakAngle.text = streakAngle + "\u00B0";Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.