@Mircea-Neacsu: the first byte of the encoding indicates the number of expected continuation bytes.
Well, if it was so ... If a byte is the first of two, three, four bytes: Yes. If it is the first of one byte: No. When an argument of 'expected continuation bytes' holds sometimes, but not all, the argument fails. (With Western text, the rule is broken regularly.)
@Mircea-Neacsu : less robust for initial sync if you are "eavesdropping"
Making it simpler for an eavesdropper to break into a communication to synchronize is rarely a primary design criterion for an encoding design ...
Besides, it makes little difference if you drop one, two or three bytes with '10' in the uppper bits, or if you drop one byte with '1' in the uppper bit. If there are two of those, then you know that you have the entire character code (the longest valid one is two bytes with 1 at the top plus the following one with 0 at the top), like in UTF8 where a byte with '110'. '1110' or '11110' at the top tells you that you are at the start of the character.
OK, so I see that there are 'arguments' in favor of the UTF8 design. But I do not accept that 'Any argument is a good argument'. I do not see any of the arguments presented as 'good design arguments', whether it is to make eavesdropper's syncing easier, a rule about trailing bytes that sometimes holds although not in the most common case, nor error robustness where in the most common case 7 out of 8 random bit errors go unnoticed.
There was a (pre-internet) network named 'Bitnet', 'bit' being an acronym for 'Because It's There'. That's a really strong argument in favor of UTF8: It is there, and at least for web pages, it seems to be capable of clearing the ground, getting rid of the umpteen squared competing alternative encodings. Let's hope that it spreads to all computer applications, not just web pages.
Success is not equivalent to design or engineering equivalence (just look at internet ...), but a less-than-perfect design is much to prefer over the complete chaos. UTF8 is a prime example.
I am none-PC in that I want to be well aware of the weaknesses as well as the strengths of the tools I am using. I guess I am well aware of UTF8 weaknesses. The reason for my initial question was intented as search for true strenghts that I have overlooked. It seems that there are not much to speak of.
Nevertheless, I will continue to advocate UTF8. Because it is there, and that is far better than a comple chaos.
Thanks to all for the comments you have made!