Latin Capital Letter Eng

Ŋ

Shortcodes

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

Unicode
U+014A
HTML Code
Ŋ
HEX Code
Ŋ
CSS Code
\014A
JS/JSON
\u014A
Unix/C/PHP/JAVA
0x14A
URL-encode
%C5%8A

Customize Latin Capital Letter Eng

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

Ŋ
  

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

Insert in HTML

1. Direct symbol:
<span>Ŋ</span>
HTML Code:
<span>&#330;</span>
HEX Code:
<span>&#x014A;</span>

Add with CSS

.latin-capital-letter-eng::before {
  content: '\\014A';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-eng').textContent = 'Ŋ';
copied