Latin Small Letter O With Stroke

ø

Shortcodes

Copy useful codes for latin small letter o with stroke symbol ø to use in websites, apps, blogs, and docs.

Unicode
U+00F8
Alt Code
248
HTML Code
ø
HTML Entity
ø
HEX Code
ø
CSS Code
\00F8
JS/JSON
\u00F8
Unix/C/PHP/JAVA
0xF8
URL-encode
%C3%B8

Customize Latin Small Letter O With Stroke

Customize ø, download it as SVG or PNG, or copy the generated HTML snippet.

ø
  

How to use Latin Small Letter O With Stroke Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>ø</span>
HTML Code:
<span>&#248;</span>
HTML Entity:
<span>&oslash;</span>
HEX Code:
<span>&#x00F8;</span>

Add with CSS

.latin-small-letter-o-with-stroke::before {
  content: '\\00F8';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-o-with-stroke').textContent = 'ø';
copied