Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What do screen readers do with an ellipsis unicode character?

For example, the Unicode character "…" or the thing you get in HTML if you use the entity. How will the various screen readers pronounce this?

like image 411
Simon Willison Avatar asked Oct 27 '25 03:10

Simon Willison


1 Answers

This depends on the screen reader. In particular, most screen readers have a number of punctuation settings such as "some", "most", and "all". So it depends which category the screen reader puts the ellipses character into, which punctuation setting the user has selected, and what action the user is taking.

For example, in the JAWS for Windows screen reader (www.FreedomScientific.com) the ellipses isn't read when reading the document, but is read when navigating by letter or word.

I appreciate that's not a definitive answer, but my personal opinion is that you shouldn't avoid this character purely for accessibility reasons - each screen reader is different and this behaviour will probably change at some point in the future.

like image 143
Saqib Avatar answered Oct 30 '25 13:10

Saqib