Ellipsis followed by dot or four dots?
. . . .
Ellipsis followed by dot or four dots?
....
... .
Compared to
… .
…. (Difference is visible if barely)
I bleieve that if you are creating web pages containing text, you should adhere to common typography practices where you are dealing with . Furthermore, I believe that if you are using characters in computing, you most definitely should consider the implications of these choices.
You are after all dealing with 3 1 glyphs or 3 1 characters vs 1 ligature (3 graphemes combined into 1 glyph) or 1 character.
echo html_entity_decode('…', ENT_QUOTES, 'utf-8') .': ' . mb_strlen(html_entity_decode('…', ENT_QUOTES, 'utf-8')) . PHP_EOL;
echo '...: ' . mb_strlen('...') . PHP_EOL;
And
SELECT t.ch, '...'
FROM
(SELECT '...' AS ch UNION SELECT '…') t
ORDER BY ch