byte[] encoding1 = "康揚股份有限公司".getBytes("UTF-8");
String s1 = new String(encoding1,"BIG5");
System.out.println("String 1:"+s1);
String 1:摨瑟���∩遢�����砍��
While trying to change from UTF8 to Big5 some of the characters are displayed as "?"
I understand those characters are not present in the character set.
Is there any other option to generate in Traditional Chinese version ?