Arabic Unicode values

Hi All,i have been given a file containing wat shud b arabic unicode values but all i can see is "?".i tried to save it as Unicode, UTF-8 but cant see any change when checking it in Notepad.Please HelpLiza
[240 byte] By [Liza-Raya] at [2007-10-1 23:36:30]
# 1
If you are seeing question marks in Notepad the characters have probably been converted incorrectly along the way - what you are seeing may be substitution characters.What are the actual hex values of the characters?
one_danea at 2007-7-15 15:26:12 > top of Java-index,Desktop,I18N...
# 2
Where did you see those "?" ? In your Java program? Precise questions lead to precise answer. Please be more precise.
horiniusa at 2007-7-15 15:26:12 > top of Java-index,Desktop,I18N...
# 3

Keep in mind that many products still can't handle unicode files and so even a perfectly valid UTF-8 file might be displayed wrong. Additionally for plain text files there's the problem that the program has no way sure-fire to know what encoding it is supposed to use when loading the file, so you'll have to tell it.

If you plan to somehow exchange data you have to make sure that it's understood by the other side. You can either specify that you'll only ever use one encoding (usually UTF-8), but that's unflexible and sometimes it's not possible (for example when you don't control the other end) or use a format that specifies the encoding it uses (XML for example).

JoachimSauera at 2007-7-15 15:26:12 > top of Java-index,Desktop,I18N...
# 4
And please make the extra effort to write out such words as "should" and "be", because that SMS-speak is hard to read for non-native people (which are quite a few around here) and doesn't look as though you take your question very serious.
JoachimSauera at 2007-7-15 15:26:12 > top of Java-index,Desktop,I18N...
# 5

sorry for being late on this... and yes ill try not to be careless again with my writing.

the problem was solved as the file was wrongly sent.

Now, i m getting the arabic names of the companies i need to show on my interface (In Arabic) along with their corresponding ascii values.

i have already created code to display arabic words in my application but i was doing it through hardcoding the unicode values in the application.

I am new to this part of java, please let me know how to change the text in the file to an equivalent unicode value.

Thank you all,

liza

Liza-Raya at 2007-7-15 15:26:12 > top of Java-index,Desktop,I18N...