Latin Small Letter O With Circumflex

ô

Shortcodes

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

Unicode
U+00F4
Alt Code
244
HTML Code
ô
HTML Entity
ô
HEX Code
ô
CSS Code
\00F4
JS/JSON
\u00F4
Unix/C/PHP/JAVA
0xF4
URL-encode
%C3%B4

Customize Latin Small Letter O With Circumflex

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

ô
  

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

Insert in HTML

1. Direct symbol:
<span>ô</span>
HTML Code:
<span>&#244;</span>
HTML Entity:
<span>&ocirc;</span>
HEX Code:
<span>&#x00F4;</span>

Add with CSS

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

Set it in JavaScript

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