Returns an ANSI sequence to insert n characters.
n
static String insertCharacter(int n) => n == 1 ? '\x1b[@' : '\x1b[$n@';