Here you can find the source of isAlef(char c)
public static boolean isAlef(char c)
//package com.java2s; public class Main { public static boolean isAlef(char c) { return (c == 0x0622 || c == 0x0623 || c == 0x0625 || c == 0x0627); }// w w w. ja va2 s.c o m }