HTML Entity for Uppercase 2 Stroke (ƻ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+01BB

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

Unicode U+01BB

Latin Extended-B

Hex Code ƻ

Hexadecimal reference

HTML Code ƻ

Decimal reference

Named Entity

No named entity

Reference Table
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)
1

Complete HTML Example

A simple example showing the Uppercase 2 Stroke (ƻ) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\01BB";
  }
 </style>
</head>
<body>
<p>Uppercase 2 Stroke (hex): &#x01BB;</p>
<p>Uppercase 2 Stroke (decimal): &#443;</p>
<p id="point">Uppercase 2 Stroke (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Uppercase 2 Stroke (ƻ) is supported in modern browsers when the font includes Latin Extended-B glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Uppercase 2 Stroke (ƻ) in linguistic and typographic contexts:

Large glyphƻ
Linguistic textSymbol ƻ in notation
Phonetic useTranscription ƻ example
vs lowercaseƻ uppercase   ƺ lowercase
Numeric refs&#x01BB; &#443; \01BB

🧠 How It Works

1

Hexadecimal Code

&#x01BB; uses the Unicode hexadecimal value 01BB to display the Uppercase 2 Stroke. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#443; uses the decimal Unicode value 443 to display the same character. This is one of the most commonly used methods.

HTML markup
3

CSS Entity

\01BB is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

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:

📖 Linguistic text

Language research materials and documents requiring the two-with-stroke variant.

🎤 Phonetic scripts

Phonetic notation systems and linguistic analysis with extended Latin letters.

🌐 International content

Multilingual websites needing accurate extended Latin character representation.

📝 Phonetic transcriptions

Notation systems requiring specific stroke-letter character variants.

🎓 Academic content

Scholarly papers and research about linguistics and language studies.

📚 Typography

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 (&#x01BB; or &#443;) consistently in HTML
  • Choose fonts that cover Latin Extended-B (U+0180–U+024F) for reliable rendering
  • Use \01BB in CSS content when 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 \01BB in 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

1

Three references render ƻ (no named entity)

&#x01BB; &#443;
2

For CSS stylesheets, use the escape in the content property

\01BB
3

Unicode U+01BB — LATIN CAPITAL LETTER TWO WITH STROKE

4

Latin Extended-B block (U+0180–U+024F)

❓ Frequently Asked Questions

Use &#x01BB; (hex), &#443; (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.
For linguistic text, phonetic scripts, extended Latin characters, international content, phonetic transcriptions, and academic content requiring the two-with-stroke letter variant.
HTML code (&#443; or &#x01BB;) 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.
Named HTML entities are typically reserved for ASCII, Latin-1, and some common symbols. Extended Latin characters like ƻ use numeric codes (hex or decimal) because they are part of specialized Unicode blocks.

Explore More HTML Entities!

Discover 1500+ HTML character references — Latin Extended-B, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful