Some of the constants of Character.UnicodeBlock.
1. Character.UnicodeBlock.WANCHO
Syntax:
UnicodeBlock java.lang.Character.UnicodeBlock.WANCHO
Constant for the "Wancho" Unicodecharacter block.
2. Character.UnicodeBlock.WARANG_CITI
Syntax:
UnicodeBlock java.lang.Character.UnicodeBlock.WARANG_CITI
Constant for the "Warang Citi" Unicode character block.
3. Character.UnicodeBlock.YEZIDI
Syntax:
UnicodeBlock java.lang.Character.UnicodeBlock.YEZIDI
Constant for the "Yezidi" Unicodecharacter block.
4. Character.UnicodeBlock.YI_RADICALS
Syntax:
UnicodeBlock java.lang.Character.UnicodeBlock.YI_RADICALS
Constant for the "Yi Radicals" Unicode character block.
5. Character.UnicodeBlock.YI_SYLLABLES
Syntax:
UnicodeBlock java.lang.Character.UnicodeBlock.YI_SYLLABLES
Constant for the "Yi Syllables" Unicode character block.
6. Character.UnicodeBlock.YIJING_HEXAGRAM_SYMBOLS
Syntax:
UnicodeBlock java.lang.Character.UnicodeBlock.YIJING_HEXAGRAM_SYMBOLS
Constant for the "Yijing Hexagram Symbols" Unicode character block.
7. Character.UnicodeBlock.ZANABAZAR_SQUARE
Syntax:
UnicodeBlock java.lang.Character.UnicodeBlock.ZANABAZAR_SQUARE
Constant for the "Zanabazar Square" Unicodecharacter block.
Approach
Java
public class CharacterUnicodeBlockConstants16 {public static void main(String[] args) {System.out.println(Character.UnicodeBlock.WANCHO);System.out.println(Character.UnicodeBlock.WARANG_CITI);System.out.println(Character.UnicodeBlock.YEZIDI);System.out.println(Character.UnicodeBlock.YI_RADICALS);System.out.println(Character.UnicodeBlock.YI_SYLLABLES);System.out.println(Character.UnicodeBlock.YIJING_HEXAGRAM_SYMBOLS);System.out.println(Character.UnicodeBlock.ZANABAZAR_SQUARE);}}
Output:
WANCHO WARANG_CITI YEZIDI YI_RADICALS YI_SYLLABLES YIJING_HEXAGRAM_SYMBOLS ZANABAZAR_SQUARE
No comments:
Post a Comment