Should I use special Unicode characters for punctuation marks such as ellipsis in programs? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T05:12:10Z http://stackoverflow.com/feeds/question/905437 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/905437/should-i-use-special-unicode-characters-for-punctuation-marks-such-as-ellipsis-in 2 Should I use special Unicode characters for punctuation marks such as ellipsis in programs? sharptooth 2009-05-25T05:26:35Z 2009-05-25T11:07:30Z <p>Unicode has a set of characters for punctuation such as <em>ellipsis</em> (…), En-Dash (–) and others. It's believed that using these characters improves typography and therefore visual appearance of the texts.</p> <p>Many development tools, Visual Studio included, support Unicode and so I could easily make use of these characters in programs resources - dialogs, etc.</p> <p>Are there any reasons for not doing so?</p> http://stackoverflow.com/questions/905437/should-i-use-special-unicode-characters-for-punctuation-marks-such-as-ellipsis-in/905446#905446 5 Answer by Alex Martelli for Should I use special Unicode characters for punctuation marks such as ellipsis in programs? Alex Martelli 2009-05-25T05:32:30Z 2009-05-25T05:32:30Z <p>If you're absolutely certain that the users' machines will have the fonts needed to display those characters properly (and e.g. for dialogs on Windows you should definitely be able to rely on that), then, go right ahead!</p>