Should I use special Unicode characters for punctuation marks such as ellipsis in programs? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T05:12:10Zhttp://stackoverflow.com/feeds/question/905437http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/905437/should-i-use-special-unicode-characters-for-punctuation-marks-such-as-ellipsis-in2Should I use special Unicode characters for punctuation marks such as ellipsis in programs?sharptooth2009-05-25T05:26:35Z2009-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#9054465Answer by Alex Martelli for Should I use special Unicode characters for punctuation marks such as ellipsis in programs?Alex Martelli2009-05-25T05:32:30Z2009-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>