Latin Small Letter Eng

ŋ

Shortcodes

Copy useful codes for latin small letter eng symbol ŋ to use in websites, apps, blogs, and docs.

Unicode
U+014B
HTML Code
ŋ
HEX Code
ŋ
CSS Code
\014B
JS/JSON
\u014B
Unix/C/PHP/JAVA
0x14B
URL-encode
%C5%8B

Customize Latin Small Letter Eng

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

ŋ
  

How to use Latin Small Letter Eng Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ŋ</span>
HTML Code:
<span>&#331;</span>
HEX Code:
<span>&#x014B;</span>

Add with CSS

.latin-small-letter-eng::before {
  content: '\\014B';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-eng').textContent = 'ŋ';
copied