HTML Entity for Uppercase 2 Stroke (ƻ)

What You'll Learn
How to display the Uppercase 2 Stroke (ƻ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01BB (LATIN CAPITAL LETTER TWO WITH STROKE) in the Latin Extended-B block (U+0180–U+024F)—a specialized letter used in linguistic and phonetic notation systems.
Render it with ƻ, ƻ, or CSS escape \01BB. There is no named HTML entity. Compare ƺ (lowercase two with stroke, U+01BA) and Ƽ (Uppercase 5 Tone, U+01BC) for related stroke-letter variants in the same block.
⚡ Quick Reference — Uppercase 2 Stroke
U+01BBLatin Extended-B
ƻHexadecimal reference
ƻDecimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+01BB
Hex code ƻ
HTML code ƻ
Named entity (none)
CSS code \01BB
Official name LATIN CAPITAL LETTER TWO WITH STROKE
Related U+01BA = Lowercase two with stroke (ƺ)
U+01BC = Uppercase five with stroke
Block Latin Extended-B (U+0180–U+024F)Complete HTML Example
A simple example showing the Uppercase 2 Stroke (ƻ) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\01BB";
}
</style>
</head>
<body>
<p>Uppercase 2 Stroke (hex): ƻ</p>
<p>Uppercase 2 Stroke (decimal): ƻ</p>
<p id="point">Uppercase 2 Stroke (CSS): </p>
</body>
</html>🌐 Browser Support
The Uppercase 2 Stroke (ƻ) is supported in modern browsers when the font includes Latin Extended-B glyphs:
👀 Live Preview
See the Uppercase 2 Stroke (ƻ) in linguistic and typographic contexts:
🧠 How It Works
Hexadecimal Code
ƻ uses the Unicode hexadecimal value 01BB to display the Uppercase 2 Stroke. The x prefix indicates hexadecimal format.
Decimal HTML Code
ƻ uses the decimal Unicode value 443 to display the same character. This is one of the most commonly used methods.
CSS Entity
\01BB is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce the glyph: ƻ. Unicode U+01BB (LATIN CAPITAL LETTER TWO WITH STROKE) in Latin Extended-B. Related: U+01BA (lowercase), U+01BC (uppercase five with stroke). No named HTML entity.
Use Cases
The Uppercase 2 Stroke (ƻ) is commonly used in:
Language research materials and documents requiring the two-with-stroke variant.
Phonetic notation systems and linguistic analysis with extended Latin letters.
Multilingual websites needing accurate extended Latin character representation.
Notation systems requiring specific stroke-letter character variants.
Scholarly papers and research about linguistics and language studies.
Content using specialized fonts supporting Latin Extended-B character sets.
💡 Best Practices
Do
- Declare UTF-8 encoding (
<meta charset="utf-8">) in your HTML document - Use numeric references (
ƻorƻ) consistently in HTML - Choose fonts that cover Latin Extended-B (U+0180–U+024F) for reliable rendering
- Use
\01BBin CSScontentwhen inserting via pseudo-elements - Provide context when the character carries linguistic meaning for accessibility
Don’t
- Confuse ƻ (U+01BB, two with stroke) with the digit 2 (U+0032)
- Put CSS escape
\01BBin HTML text nodes - Expect a named HTML entity—only numeric codes work for ƻ
- Assume every system font renders Latin Extended-B glyphs
- Mix hex and decimal references inconsistently within the same document
Key Takeaways
Three references render ƻ (no named entity)
ƻ ƻFor CSS stylesheets, use the escape in the content property
\01BBUnicode U+01BB — LATIN CAPITAL LETTER TWO WITH STROKE
Latin Extended-B block (U+0180–U+024F)
Previous: Upper Right Shadowed White Square (❒) Next: Uppercase 5 Tone
❓ Frequently Asked Questions
ƻ (hex), ƻ (decimal), or \01BB in CSS content. All produce ƻ. There is no named HTML entity.U+01BB (LATIN CAPITAL LETTER TWO WITH STROKE). Latin Extended-B block (U+0180–U+024F). Hex 01BB, decimal 443. Used in linguistic and phonetic notation.ƻ or ƻ) is used in HTML content. The CSS entity (\01BB) is used in CSS, e.g. in the content property of ::before or ::after. Both produce ƻ but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — Latin Extended-B, symbols, and more.
8 people found this page helpful
