public static boolean unlikely(char c) {
if (c < 'a' || c > 'z')
return true;
return c == 'v' || c == 'x' || c == 'j' || c == 'q' || c == 'z';
}
AFAIK JQVXZ are the 5 least-likely consonants in the English language, and always followed by a vowel. What is the significance, though?
Look at the chat censor in your clients.