Returns an ANSI sequence to delete n characters.
n
static String deleteCharacter(int n) => n == 1 ? '\x1b[P' : '\x1b[${n}P';