Sorry for this stupid question, searched but not confident is the right answer is found, so the default separator is only space for awk?
Let's take a look at the GNU awk man page:
FS— The input field separator, a space by default. See Fields, above.
To the Fields section!
As each input record is read, gawk splits the record into fields, using the value of the
FSvariable as the field separator. IfFSis a single character, fields are separated by that character. IfFSis the null string, then each individual character becomes a separate field. Otherwise,FSis expected to be a full regular expression. In the special case thatFSis a single space, fields are separated by runs of spaces and/or tabs and/or newlines.