Apostrophe

'

Shortcodes

Copy useful codes for apostrophe symbol ' to use in websites, apps, blogs, and docs.

Unicode
U+0027
Alt Code
39
HTML Code
'
HEX Code
'
CSS Code
\0027
JS/JSON
\u0027
Unix/C/PHP/JAVA
0x27
URL-encode
%27

Customize Apostrophe

Customize ', download it as SVG or PNG, or copy the generated HTML snippet.

'
  

How to use Apostrophe Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>'</span>
HTML Code:
<span>&#39;</span>
HEX Code:
<span>&#x0027;</span>

Add with CSS

.apostrophe::before {
  content: '\\0027';
}

Set it in JavaScript

document.querySelector('.apostrophe').textContent = ''';
copied