Character.reverseBytes(char ch) has the following syntax.
public static char reverseBytes(char ch)
In the following code shows how to use Character.reverseBytes(char ch) method.
public class Main { /* w w w . j a v a 2 s. c om*/ public static void main(String[] args) { char ch1 = '\u4d00', ch2; ch2 = Character.reverseBytes(ch1); String str = "Reversing bytes on ch1 gives " + ch2; System.out.println( str ); } }
The code above generates the following result.