How to add bullet sign and (R) in swing text

Hi guys,I guess its a stupid question. But still I've to ask for help. I have to show bullets and (R) on JtextAreaAny one knows how to do it?Please help.Thanks in advance
[213 byte] By [SMHasana] at [2007-11-27 3:45:02]
# 1
I guess the text area can display any unicode character that the font supports. What's the problem?Kaj
kajbja at 2007-7-12 8:48:44 > top of Java-index,Java Essentials,Java Programming...
# 2
Are you referring to this: ?
DrLaszloJamfa at 2007-7-12 8:48:44 > top of Java-index,Java Essentials,Java Programming...
# 3
If it's HTML text you can most likely use whatever the escape HTML sequence is for those two things..Somewhere on the world wide web thingy there's likely to be a chart, or something..
xiarcela at 2007-7-12 8:48:44 > top of Java-index,Java Essentials,Java Programming...
# 4
yes I'm reffering to that sign. But sadly I don't know how to print it on textArea.And How would I be able to use unicode character?
SMHasana at 2007-7-12 8:48:44 > top of Java-index,Java Essentials,Java Programming...
# 5

> yes I'm reffering to that sign. But sadly I don't

> know how to print it on textArea.

> And How would I be able to use unicode character?

http://unicode.org/

http://www.unicode.org/charts/PDF/U0080.pdf

On that page the unicode is given as 00AE.

So to put that symbol in a string, write:

"Here is an example \u00AE"

DrLaszloJamfa at 2007-7-12 8:48:44 > top of Java-index,Java Essentials,Java Programming...