Apocryphal Apostrophes
Post from January 8, 2017 (↻ May 28, 2019), filed under Web Development and Art and Design.
For JavaScript, W3Schools (caution) says:
The backslash escape character turns special characters into string characters:
var x = 'It\'s alright';
Same for my darling Enki, noting:
str1 = 'I\'m a string.; str2 = "I'm a string.";
str1
andstr2
output the same string butstr2
is easier to read since it doesn’t require an escape character inI'm
.
For Python, Learn Python the Hard Way says:
[…]you escape double-quotes and single-quotes so Python knows to include in the string. Here’s an example:"I am 6'2" tall." # escape double-quote inside string 'I am 6\'2" tall.' # escape single-quote inside string
For Oracle PL/SQL, Tech on the Net says:
When the apostrophe/single quote is in the middle of the string, you need to enter [two] single quotes for Oracle to display a quote symbol. For example:
SELECT 'He''s always the first to arrive'
(This could go on.)
The examples aren’t perfect, the sources, neither, but what’s wrong in this picture?
What’s wrong is what typographers preach for ages: Use real apostrophes.
(On macOS with US keyboard layout you should be able to type a apostrophe through option + shift + ]. On Windows, use something like alt + 0146.)
Yes, we’ll still need to escape characters—perhaps the examples simply aren’t great—and tutorials to say how to. But through proper punctuation do our designs benefit, as well as our code.
See the 2009 punctuation cheat sheet for more characters to use correctly, in more locales.
About Me

I’m Jens Oliver Meiert, and I’m a web developer (engineering manager) and author. I love trying things, sometimes including philosophy, art, and adventure. Here on meiert.com I share some of my views and experiences.
If you have questions or suggestions about what I write, please leave a comment (if available) or a message.
Read More
Have a look at the most popular posts, possibly including:

Perhaps my most relevant book: CSS Optimization Basics (2018). Writing CSS is a craft. As craftspeople we strive to write high quality CSS. In CSS Optimization Basics I lay out some of the most important aspects of such CSS. Available at Amazon, Google Play Books, and Leanpub.
Looking for a way to comment? Comments have been disabled, unfortunately.