Why wc -m counts one character (symbol) more from here-string (<<<)
Here is example:
$ TEST_STR="askubuntu"
$ echo "$TEST_STR"
askubuntu
$ wc -m <<<"$TEST_STR"
10
It is saying 10, but actually there is only 9 symbols.
The same problem appears for wc -c