HTML Entity for Uppercase O Stroke Acute (Ǿ)

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
U+01FELatin Extended-B
ǾHexadecimal reference
ǾDecimal reference
—No named entity
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\01FE";
}
</style>
</head>
<body>
<p>Symbol (hex): Ǿ</p>
<p>Symbol (decimal): Ǿ</p>
<p>Symbol (direct): Ǿ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase O stroke acute (Ǿ) is supported in all modern browsers as part of Latin Extended-B:
👀 Live Preview
See the uppercase O stroke acute (Ǿ) in language and notation contexts:
🧠 How It Works
Hexadecimal Code
Ǿ uses the Unicode hexadecimal value 01FE to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ǿ uses the decimal Unicode value 510 to display the same character. A common method when a numeric reference is needed.
Direct Character
Type Ǿ directly in HTML when your document uses UTF-8 encoding. There is no named entity for this letter.
CSS Entity
\01FE is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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 texts and localization where the combined stroke-and-acute form on O is required at sentence start or in capitalized words.
Phonetic transcription and language documentation marking both stroke and acute on O.
Scholarly papers, dictionaries, and critical editions requiring precise diacritic combinations.
Nordic and linguistic content with correct extended Latin characters for readability and SEO.
Font specimens showcasing Latin Extended-B support for stacked diacritics on uppercase letters.
Using U+01FE with proper lang attributes ensures assistive technologies interpret text correctly.
When building HTML from data, Ǿ or Ǿ guarantees correct output.
💡 Best Practices
Do
- Serve pages as UTF-8; you can type Ǿ directly in UTF-8 source
- Use numeric references (
ǾorǾ) 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
\01FEin HTML text nodes - Use Ǿ for plain Faroese Ø or Ó when only one diacritic applies
Key Takeaways
Type Ǿ directly, or use hex/decimal references
Ǿ ǾFor CSS stylesheets, use the escape in the content property
\01FEUnicode U+01FE — LATIN CAPITAL LETTER O WITH STROKE AND ACUTE
Faroese & linguistics; lowercase is ǿ (U+01FF)
Previous: Uppercase O Slash (Ø) Next: Uppercase O Tilde
❓ Frequently Asked Questions
Ǿ (hex), Ǿ (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 (ǿ).Ǿ or Ǿ, or the CSS entity \01FE. In UTF-8 pages you can type Ǿ directly.Ø). Ó (U+00D3) is O with acute only (Ó). 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.
8 people found this page helpful
