HTML Entity for Lowercase O Slash (ø)

What You'll Learn
How to display the lowercase o with stroke (ø) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is U+00F8 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 \00F8. 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 — Lowercase O Slash Entity
U+00F8Latin-1 Supplement
øHexadecimal reference
øDecimal reference
øHTML5 named entity
Name Value
──────────── ──────────
Unicode U+00F8
Hex code ø
HTML code ø
Named entity ø
CSS code \00F8
Meaning Latin small letter o with stroke
Related U+00D8 = Ø (uppercase, Ø)
Block Latin-1 Supplement (U+0080–U+00FF)Complete HTML Example
A simple example showing the lowercase o slash (ø) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\00F8";
}
</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 lowercase o slash (ø) and the named entity ø are supported in all modern browsers:
👀 Live Preview
See the lowercase 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 00F8 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ø uses the decimal Unicode value 248 to display the same character. A common method when a numeric reference is needed.
CSS Entity
\00F8 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+00F8 sits in Latin-1 Supplement. Uppercase equivalent: U+00D8 (Ø, Ø). Do not confuse with ö (diaeresis), ô (circumflex), or ∅ (empty set).
Use Cases
The lowercase o slash (ø) is commonly used in:
Essential for correct spelling (København, smør, børn). ø is a distinct letter in the Danish alphabet.
Used in Norwegian Bokmål and Nynorsk (søster, følge, øl). Correct characters support proper Nordic localization.
Used in Faroese orthography alongside other Nordic letters. Essential for Faroese-language content.
Menus, search, forms, and content for Scandinavian audiences. Correct ø improves readability and SEO.
Personal names, brand names, and place names containing ø (e.g. København, Søren).
Using U+00F8 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+00F8 (ø) 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
- Put CSS escape
\00F8in HTML text nodes - Drop the stroke in Danish or Norwegian words (e.g. writing smor instead of smør)
- 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
\00F8Unicode U+00F8 — LATIN SMALL LETTER O WITH STROKE
Danish, Norwegian, Faroese; uppercase is Ø (Ø)
Previous: Lowercase O Script Small (ℴ) Next: Lowercase O Stroke Acute
❓ Frequently Asked Questions
ø, hexadecimal ø, decimal ø, or \00F8 in CSS content. The named entity is the most readable. In UTF-8 you can also type ø directly.U+00F8 (LATIN SMALL LETTER O WITH STROKE). Latin-1 Supplement block. Hex 00F8, decimal 248. Used in Danish, Norwegian, and Faroese. Uppercase form is U+00D8 (Ø, Ø).ø. You can also use ø, ø, or the CSS entity \00F8. 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
