List of utility methods to do Char Compare
boolean | compare(char firstChar, char secondChar) compare return ((firstChar == secondChar)
|| (isAlef(firstChar) && isAlef(secondChar))
|| (isHah(firstChar) && isHah(secondChar)) || (isYeh(firstChar) && isYeh(secondChar)));
|