Peeks at the next character code without consuming it.
@override int peekCode() { final char = peekChar(); if (char == null) return -1; return char.codeUnitAt(0); }