HTML Entity for Uppercase O Slash (Ø)

What You'll Learn
How to display the uppercase O with stroke (Ø) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00D8 in the Latin-1 Supplement block—the letter O with a diagonal stroke through it. It is a distinct letter in Danish, Norwegian, and Faroese orthography.
Render it with Ø, Ø, Ø, or CSS escape \00D8. HTML provides the named entity Ø for this character. In UTF-8 documents you can also type Ø directly. Do not confuse Ø with Ö (O diaeresis) or the empty-set symbol ∅.
⚡ Quick Reference — Uppercase O Slash Entity
U+00D8Latin-1 Supplement
ØHexadecimal reference
ØDecimal reference
ØHTML5 named entity
Name Value
──────────── ──────────
Unicode U+00D8
Hex code Ø
HTML code Ø
Named entity Ø
CSS code \00D8
Meaning Latin capital letter O with stroke
Related U+00F8 = ø (lowercase, ø)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the uppercase O slash (Ø) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00D8";
}
</style>
</head>
<body>
<p>Symbol (hex): Ø</p>
<p>Symbol (decimal): Ø</p>
<p>Symbol (named): Ø</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase O slash (Ø) and the named entity Ø are supported in all modern browsers:
👀 Live Preview
See the uppercase O slash (Ø) in Scandinavian language contexts:
🧠 How It Works
Named Entity
Ø is the HTML named entity for O slash—readable in source HTML and widely used for Danish and Norwegian content.
Hexadecimal Code
Ø uses the Unicode hexadecimal value 00D8 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
Ø uses the decimal Unicode value 216 to display the same character. A common method when a numeric reference is needed.
CSS Entity
\00D8 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: Ø. Unicode U+00D8 sits in Latin-1 Supplement. Lowercase equivalent: U+00F8 (ø, ø). Do not confuse with Ö (diaeresis), Ô (circumflex), or ∅ (empty set).
Use Cases
The uppercase O slash (Ø) is commonly used in:
Capitalized words and place names (Øresund, Øst). Ø is a distinct letter in the Danish alphabet.
Used in Norwegian Bokmål and Nynorsk at sentence start or in titles (Østfold, Østerdalen).
Used in Faroese orthography in capitalized form. Essential for Faroese-language content.
Menus, search, forms, and content for Scandinavian audiences. Correct Ø improves readability and SEO.
Personal names, brand names, and geographic names with capital Ø (e.g. Øresund, SØren at sentence start).
Using U+00D8 or Ø with proper lang attributes ensures assistive technologies pronounce text correctly.
When generating markup, Ø or Ø guarantees correct Scandinavian letter output.
💡 Best Practices
Do
- Use U+00D8 (Ø) for Danish, Norwegian, and Faroese text
- Prefer
Øover numeric codes when using entities—it is more readable - Set
lang="da",lang="no", orlang="fo"on Scandinavian content blocks - Serve pages as UTF-8; you can also type Ø directly in UTF-8 source
- Distinguish Ø from Ö (diaeresis), plain O, and ∅ (empty set)
Don’t
- Substitute Ö (diaeresis) or plain
Owhen Ø is required - Use ∅ (empty set) in place of Ø in language text
- Use Swedish Ö where Danish/Norwegian Ø is required—they are different letters
- Put CSS escape
\00D8in HTML text nodes - Mix entity styles inconsistently within the same project
Key Takeaways
Four references render Ø; named entity is Ø
Ø Ø ØFor CSS stylesheets, use the escape in the content property
\00D8Unicode U+00D8 — LATIN CAPITAL LETTER O WITH STROKE
Danish, Norwegian, Faroese; lowercase is ø (ø)
Previous: Uppercase O Ogonek Macron (Ǭ) Next: Uppercase O Stroke Acute
❓ Frequently Asked Questions
Ø (named), Ø (hex), Ø (decimal), or \00D8 in CSS content. In UTF-8 you can also type Ø directly.U+00D8 (LATIN CAPITAL LETTER O WITH STROKE). Latin-1 Supplement block. Hex 00D8, decimal 216. Used in Danish, Norwegian, and Faroese. Lowercase form is U+00F8 (ø).Ø. You can also use numeric codes Ø or Ø, or the CSS entity \00D8. In UTF-8 pages you can type Ø directly.Explore More HTML Entities!
Discover 1500+ HTML character references — letters, symbols, and more.
8 people found this page helpful
