bool isLetter(int x) => (char.$a <= x && x <= char.$z) || (char.$A <= x && x <= char.$Z) || x > 127 && isFancyLetter(x);