We may all come across the issue of how to support Multi language in Oracle. For that UTF-8 is the best way to do that. Here is the steps need to follow to achive UTF-8 support.
update sys.props$ set VALUE$='AL32UTF8' where NAME='NLS_CHARACTERSET';
shu immediate;
startup;
In Case if you are working with web application to enable UTF-8, configure the force encoding of all incomming request in web.xml
.
To Support Multilanguage search in data table, do the below configuration in tomcat server of server.xml
file