function isUnicodeLetter(c) { return c.toUpperCase() != c.toLowerCase(); } alert( isUnicodeLetter(prompt('буква','')) )