Here you can find the source of isArabic(char c)
public static boolean isArabic(char c)
//package com.java2s; public class Main { public static boolean isArabic(char c) { return (0x0621 <= c && c <= 0x06ED); }//from w w w . j a va 2s. c om }