List of usage examples for java.lang Character DIRECTIONALITY_SEGMENT_SEPARATOR
byte DIRECTIONALITY_SEGMENT_SEPARATOR
To view the source code for java.lang Character DIRECTIONALITY_SEGMENT_SEPARATOR.
Click Source Link
From source file:Main.java
public static void main(String[] args) { for (char ch = Character.MIN_VALUE; ch < Character.MAX_VALUE; ch++) { if (Character.DIRECTIONALITY_SEGMENT_SEPARATOR == Character.getDirectionality(ch)) { String s = String.format("\\u%04x", (int) ch); System.out.println(s); }//from ww w . j av a 2 s . co m } }