HTML Entity for Uppercase O Stroke Acute (Ǿ)

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

What You'll Learn

How to display the uppercase O with stroke and acute (Ǿ) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+01FE 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 \01FE. 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 — Uppercase O Stroke Acute Entity

Unicode U+01FE

Latin Extended-B

Hex Code Ǿ

Hexadecimal reference

HTML Code Ǿ

Decimal reference

Named Entity

No named entity

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

Complete HTML Example

A simple example showing the uppercase 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: "\01FE";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x01FE;</p>
<p>Symbol (decimal): &#510;</p>
<p>Symbol (direct): Ǿ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The uppercase 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 uppercase O stroke acute (Ǿ) in language and notation contexts:

Large glyphǾ
Unicode nameLatin capital letter O with stroke and acute
UsageFaroese, linguistic notation, academic texts
Lowercaseǿ (U+01FF) — LATIN SMALL 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&#x01FE; &#510; \01FE

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

&#510; uses the decimal Unicode value 510 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

\01FE 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+01FE sits in Latin Extended-B. Lowercase equivalent: U+01FF (ǿ). Do not confuse with Ø (stroke only), Ó (acute only), or plain O.

Use Cases

The uppercase O stroke acute (Ǿ) is commonly used in:

🇬🇷 Faroese

Faroese texts and localization where the combined stroke-and-acute form on O is required at sentence start or in capitalized words.

🔤 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 on uppercase letters.

♿ Accessibility

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

⚙ Programmatic HTML

When building HTML from data, &#510; or &#x01FE; guarantees correct output.

💡 Best Practices

Do

  • Serve pages as UTF-8; you can type Ǿ directly in UTF-8 source
  • Use numeric references (&#x01FE; or &#510;) 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 \01FE in HTML text nodes
  • Use Ǿ for plain Faroese Ø or Ó when only one diacritic applies

Key Takeaways

1

Type Ǿ directly, or use hex/decimal references

&#x01FE; &#510;
2

For CSS stylesheets, use the escape in the content property

\01FE
3

Unicode U+01FE — LATIN CAPITAL LETTER O WITH STROKE AND ACUTE

4

Faroese & linguistics; lowercase is ǿ (U+01FF)

❓ Frequently Asked Questions

Use &#x01FE; (hex), &#510; (decimal), or \01FE in CSS content. There is no named HTML entity for Ǿ. In UTF-8 you can also type Ǿ directly.
U+01FE (LATIN CAPITAL LETTER O WITH STROKE AND ACUTE). Latin Extended-B block. Hex 01FE, decimal 510. Used in Faroese and linguistic notation. Lowercase form is U+01FF (ǿ).
When displaying Faroese or other linguistic content at sentence start or in capitalized words 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 &#510; or &#x01FE;, or the CSS entity \01FE. In UTF-8 pages you can type Ǿ directly.
Ǿ (U+01FE) is O with both stroke and acute. Ø (U+00D8) is O with stroke only (&Oslash;). Ó (U+00D3) 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