HTML Entity for Uppercase Eng (Ŋ)

What You'll Learn
How to display the uppercase eng (Ŋ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+014A in the Latin Extended-A block. It is the capital form of the velar nasal letter used in Sami languages, Greenlandic, IPA notation, and other orthographies.
Render it with Ŋ, Ŋ, Ŋ, or CSS escape \014A. The named entity Ŋ is often the most readable option in HTML source.
⚡ Quick Reference — Uppercase Eng Entity
U+014ALatin Extended-A
ŊHexadecimal reference
ŊDecimal reference
ŊMost readable option
Name Value
──────────── ──────────
Unicode U+014A
Hex code Ŋ
HTML code Ŋ
Named entity Ŋ
CSS code \014A
Meaning Latin capital letter eng
Related U+014B = ŋ (lowercase)
Block Latin Extended-A (U+0100–U+017F)Complete HTML Example
A simple example showing the uppercase eng (Ŋ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\014A";
}
</style>
</head>
<body>
<p>Symbol (hex): Ŋ</p>
<p>Symbol (decimal): Ŋ</p>
<p>Symbol (named): Ŋ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase eng (Ŋ) and the named entity Ŋ are supported in all modern browsers:
👀 Live Preview
See the uppercase eng (Ŋ) in linguistic and language contexts:
🧠 How It Works
Hexadecimal Code
Ŋ uses the Unicode hexadecimal value 014A to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ŋ uses the decimal Unicode value 330 to display the same character. A common method when a numeric reference is needed.
Named Entity
Ŋ is the named entity for eng (Latin capital letter eng)—readable in source HTML and part of the HTML5 entity set.
CSS Entity
\014A is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: Ŋ. Unicode U+014A sits in Latin Extended-A. Lowercase equivalent: U+014B (ŋ). Do not confuse with plain N (U+004E) or Ň (n caron).
Use Cases
The uppercase eng (Ŋ) is commonly used in:
Northern Sami, Inari Sami, Skolt Sami, and other Sami orthographies for correct capital-letter spelling.
Essential in Greenlandic (Kalaallisut) websites, documents, and localization projects.
Academic papers, dictionaries, and phonetic guides referencing the capital eng letter.
Localization for Nordic minority languages and indigenous content with proper lang attributes.
Dictionaries, atlases, and educational materials for languages using the eng character.
When building HTML from language data or CMS content, using Ŋ or Ŋ guarantees correct output.
Using the correct character (U+014A) ensures assistive technologies interpret language-specific content correctly.
💡 Best Practices
Do
- Use
Ŋin HTML when possible for readability - Serve pages as UTF-8; you can also type Ŋ directly in UTF-8 source
- Set
lang="se",lang="kl", or other appropriate codes on relevant content - Use fonts that support Latin Extended-A orthography characters
- Distinguish Ŋ (eng) from plain
N(U+004E) and Ň (n caron)
Don’t
- Substitute plain
NorNGwhen Ŋ is required for correct spelling - Put CSS escape
\014Ain HTML text nodes - Use padded Unicode notation like U+0014A—the correct value is
U+014A - Use
\0014Ain CSS—the correct escape is\014A - Assume all fonts render Latin Extended-A glyphs identically
Key Takeaways
Four references render Ŋ; named entity is most readable
Ŋ Ŋ ŊFor CSS stylesheets, use the escape in the content property
\014AUnicode U+014A — LATIN CAPITAL LETTER ENG
Essential for Sami, Greenlandic, linguistic content, and multilingual websites
Previous: Uppercase E Umlaut (Ë) Next: Uppercase Ezh (Ʒ)
❓ Frequently Asked Questions
Ŋ (named), Ŋ (hex), Ŋ (decimal), or \014A in CSS content. All four methods render Ŋ correctly.U+014A (LATIN CAPITAL LETTER ENG). Latin Extended-A block. Hex 014A, decimal 330. Used in Sami languages, Greenlandic, and linguistic notation.Ŋ or Ŋ) or the named entity Ŋ is used in HTML content. The CSS entity (\014A) is used in CSS, e.g. in the content property of pseudo-elements. Both produce Ŋ but in different contexts.Ŋ. It is part of the standard HTML5 entity set and is well supported. You can also use Ŋ or Ŋ for numeric references.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, IPA symbols, and more.
8 people found this page helpful
