Latin Small Letter N Preceded By Apostrophe

ʼn

Shortcodes

Copy useful codes for latin small letter n preceded by apostrophe symbol ʼn to use in websites, apps, blogs, and docs.

Unicode
U+0149
HTML Code
ʼn
HEX Code
ʼn
CSS Code
\0149
JS/JSON
\u0149
Unix/C/PHP/JAVA
0x149
URL-encode
%C5%89

Customize Latin Small Letter N Preceded By Apostrophe

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

ʼn
  

How to use Latin Small Letter N Preceded By Apostrophe Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ʼn</span>
HTML Code:
<span>&#329;</span>
HEX Code:
<span>&#x0149;</span>

Add with CSS

.latin-small-letter-n-preceded-by-apostrophe::before {
  content: '\\0149';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-n-preceded-by-apostrophe').textContent = 'ʼn';
copied