In Portuguese, the name of the language itself is ‘português’, where that ‘ê’ can be expressed in Unicode as either code point U+EA, which is LATIN SMALL LETTER E WITH CIRCUMFLEX, or as a regular ‘e’ followed by code point U+301, COMBINING CIRCUMFLEX ACCENT. So the string might be 9 but it might be 10 characters long. The longer form is in Normalization Form D (formed by canonical decomposition) and the shorter one is in NFC (formed by canonical decomposition followed by canonical composition).
However, when the word is inflected, the diacritic is lost, so words like ‘portuguesas’, which concords in number and gender with the noun ‘empresas’, should not bear any diacritics at all.
The string you sent has only a single non-ASCII character in it, and it is a printing one. It’s in the word ‘país’.
This shows each logical code point of UTF-8 input:
$ echo "das empresas portuguesas neste país" | perl -CS -ne 'printf "%v02X\n", $_'
64.61.73.20.65.6D.70.72.65.73.61.73.20.70.6F.72.74.75.67.75.65.73.61.73.20.6E.65.73.74.65.20.70.61.ED.73.0A
And this shows each separate byte of it:
$ echo "das empresas portuguesas neste país" | perl -C0 -ne 'printf "%v02X\n", $_'
64.61.73.20.65.6D.70.72.65.73.61.73.20.70.6F.72.74.75.67.75.65.73.61.73.20.6E.65.73.74.65.20.70.61.C3.AD.73.0A
Here is how to do that if you only want to see the non-ASCII code points:
# logical code points
$ echo "das empresas portuguesas neste país" | perl -CS -pe 's/[^\x00-\x7F]/sprintf "\x5Cx{%X}", ord $&/ge'
das empresas portuguesas neste pa\x{ED}s
# separate bytes
$ echo "das empresas portuguesas neste país" | perl -C0 -pe 's/[^\x00-\x7F]/sprintf "\x5Cx%X", ord $&/ge'
das empresas portuguesas neste pa\xC3\xADs
That ‘í’ could be code point U+ED, or it might be regular ‘i’ followed by code point U+301, COMBINING ACUTE ACCENT. If so, it would show up like this:
# show the NFD form
$ perl -CS -le 'print "das empresas portuguesas neste pai\x{301}s"'
das empresas portuguesas neste país
# show UTF-8 non-ASCII code points
$ perl -CS -le 'print "das empresas portuguesas neste pai\x{301}s"' | perl -CS -pe 's/[^\x00-\x7F]/sprintf "\x5Cx{%X}", ord $&/ge'
das empresas portuguesas neste pai\x{301}s
# show non-ASCII bytes
$ perl -CS -le 'print "das empresas portuguesas neste pai\x{301}s"' | perl -C0 -pe 's/[^\x00-\x7F]/sprintf "\x5Cx%X", ord $&/ge'
das empresas portuguesas neste pai\xCC\x81s
It may be that Stack Overflow (or something else) rewrote your string, possibly deleting nonprinting characters. So you might have stuff in there that we can’t see because it isn’t in the data we looked at.