HTML Entity for Lowercase O Stroke Acute (ǿ)

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

What You'll Learn

How to display the lowercase o with stroke and acute (ǿ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01FF in the Latin Extended-B block—a single precomposed glyph with a diagonal stroke through o and an acute accent above.

Render it with ǿ, ǿ, or CSS escape \01FF. There is no named HTML entity. In UTF-8 documents you can also type ǿ directly. It appears in Faroese and in linguistic or phonetic notation where both diacritics apply to o.

⚡ Quick Reference — Lowercase O Stroke Acute Entity

Unicode U+01FF

Latin Extended-B

Hex Code ǿ

Hexadecimal reference

HTML Code ǿ

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+01FF
Hex code       ǿ
HTML code      ǿ
Named entity   (none)
CSS code       \01FF
Meaning        Latin small letter o with stroke and acute
Related        U+01FE = Ǿ (uppercase)
Block          Latin Extended-B (U+0180–U+024F)
1

Complete HTML Example

A simple example showing the lowercase o stroke acute (ǿ) using hexadecimal code, decimal HTML code, the character directly, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\01FF";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x01FF;</p>
<p>Symbol (decimal): &#511;</p>
<p>Symbol (direct): ǿ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The lowercase o stroke acute (ǿ) is supported in all modern browsers as part of Latin Extended-B:

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

👀 Live Preview

See the lowercase o stroke acute (ǿ) in language and notation contexts:

Large glyphǿ
Unicode nameLatin small letter o with stroke and acute
UsageFaroese, linguistic notation, academic texts
UppercaseǾ (U+01FE) — LATIN CAPITAL LETTER O WITH STROKE AND ACUTE
Not the same asø (stroke only)  |  ó (acute only)  |  plain o
NoteEveryday Faroese often uses separate ø and ó—ǿ is the combined precomposed form
Numeric refs&#x01FF; &#511; \01FF

🧠 How It Works

1

Hexadecimal Code

&#x01FF; uses the Unicode hexadecimal value 01FF to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#511; uses the decimal Unicode value 511 to display the same character. A common method when a numeric reference is needed.

HTML markup
3

Direct Character

Type ǿ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this letter.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All methods produce the glyph: ǿ. Unicode U+01FF sits in Latin Extended-B. Uppercase equivalent: U+01FE (Ǿ). Do not confuse with ø (stroke only), ó (acute only), or plain o.

Use Cases

The lowercase o stroke acute (ǿ) is commonly used in:

🇬🇷 Faroese

Faroese texts and localization where the combined stroke-and-acute form on o is required.

🔤 Linguistics

Phonetic transcription and language documentation marking both stroke and acute on o.

📚 Academic publishing

Scholarly papers, dictionaries, and critical editions requiring precise diacritic combinations.

🌐 Multilingual sites

Nordic and linguistic content with correct extended Latin characters for readability and SEO.

🎨 Typography

Font specimens showcasing Latin Extended-B support for stacked diacritics.

♿ Accessibility

Using U+01FF with proper lang attributes ensures assistive technologies interpret text correctly.

⚙ Programmatic HTML

When building HTML from data, &#511; or &#x01FF; guarantees correct output.

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type ǿ directly in UTF-8 source
  • Use numeric references (&#x01FF; or &#511;) when escaping is required
  • Set lang="fo" on Faroese content blocks
  • Use fonts that support Latin Extended-B (U+0180–U+024F)
  • Distinguish ǿ from ø (stroke only), ó (acute only), and plain o

Don’t

  • Substitute ø or ó when ǿ is the correct combined character
  • Stack separate combining marks when the precomposed ǿ is intended
  • Expect a named HTML entity—none exists for ǿ
  • Put CSS escape \01FF in HTML text nodes
  • Use ǿ for plain Faroese ø or ó when only one diacritic applies

Key Takeaways

1

Type ǿ directly, or use hex/decimal references

&#x01FF; &#511;
2

For CSS stylesheets, use the escape in the content property

\01FF
3

Unicode U+01FF — LATIN SMALL LETTER O WITH STROKE AND ACUTE

4

Faroese & linguistics; uppercase is Ǿ (U+01FE)

❓ Frequently Asked Questions

Use &#x01FF; (hex), &#511; (decimal), or \01FF in CSS content. There is no named HTML entity for ǿ. In UTF-8 you can also type ǿ directly.
U+01FF (LATIN SMALL LETTER O WITH STROKE AND ACUTE). Latin Extended-B block. Hex 01FF, decimal 511. Used in Faroese and linguistic notation. Uppercase form is U+01FE (Ǿ).
When displaying Faroese or other linguistic content that requires o with both stroke and acute accent combined, in phonetic or academic notation, and in scholarly or localized web pages.
No. Use numeric codes &#511; or &#x01FF;, or the CSS entity \01FF. In UTF-8 pages you can type ǿ directly.
ǿ (U+01FF) is o with both stroke and acute. ø (U+00F8) is o with stroke only (&oslash;). ó (U+00F3) is o with acute only (&oacute;). They are distinct precomposed characters—use the one that matches your text.

Explore More HTML Entities!

Discover 1500+ HTML character references — letters, 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