Java – Convert Chinese character to Unicode with native2ascii
The native2ascii is a handy tool build-in in the JDK, which is used to convert a file with ‘non-Latin 1′ or ‘non-Unicode’ characters to ‘Unicode-encoded’ characters.
Native2ascii example
1. Create a file (source.txt)
Create a file named “source.txt”, put some Chinese characters inside, and save it as “UTF-8″ format.

2. native2ascii
Use native2ascii command to convert it into Unicode format.
C:\>native2ascii -encoding utf8 c:\source.txt c:\output.txt
The native2ascii will read all the characters from “c:\source.txt” and encode it with “utf8″ format, and output all encoded characters to “c:\output.txt”
3. Read Output
Open the “c:\output.txt”, you will see the all encoded characters, e.g \ufeff\u6768\u6728\u91d1

Reference
1. http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/native2ascii.html
please attach the complete code in jave SE6 to use unicode conversion using UTF-8 for oriya i.e., type oriya using ascii keyboard and it will display in oriya character
[...] JSF 2.0 Note For UTF-8 or non-English characters, for example Chinese , you should encode it with native2ascii [...]
[...] Spring MVC Note For UTF-8 or non-English characters , it have to encode with native2ascii [...]
[...] 2. Properties file Make sure the properties file are named as country specified code. In some “non-Europe” or “non-English” like characters, you should always encode the content with native2ascii tool. [...]
[...] http://www.mkyong.com/java/java-convert-chinese-character-to-unicode-with-native2ascii/ [...]
[...] you have to use “native2ascii” tool to convert the Chinese characters to Unicode characters in order to display it [...]