Java Character.reverseBytes(char ch)
Syntax
Character.reverseBytes(char ch) has the following syntax.
public static char reverseBytes(char ch)
Example
In the following code shows how to use Character.reverseBytes(char ch) method.
public class Main {
/* www. j a v a 2 s.c o m*/
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.