.
Pankaj Jain wrote,

> My problem is that, I am getting Unicode character(\uFFE2\uFF80\uFF93)
> from resource bundle property file which is equivalent to ndash(-) and
> its 

U+2013 is the ndash (–).  It is represented in UTF-8 by three
hex bytes: E2 80 93.

But, \uFFE2 is fullwidth pound sign
\uFF80 is half width katakana letter ta
and \uff93 is half width katakana letter mo.

Perhaps the reason you see three question marks is that the font
you are using doesn't support full width and half width characters.

What happens if you replace your string \uFFE2\uFF80\uFF93 with
\u2013 ?

Best regards,

James Kass
.

Reply via email to