Latin Capital Letter O With Circumflex

Ô

Shortcodes

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

Unicode
U+00D4
Alt Code
212
HTML Code
Ô
HTML Entity
Ô
HEX Code
Ô
CSS Code
\00D4
JS/JSON
\u00D4
Unix/C/PHP/JAVA
0xD4
URL-encode
%C3%94

Customize Latin Capital Letter O With Circumflex

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

Ô
  

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

Insert in HTML

1. Direct symbol:
<span>Ô</span>
HTML Code:
<span>&#212;</span>
HTML Entity:
<span>&Ocirc;</span>
HEX Code:
<span>&#x00D4;</span>

Add with CSS

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

Set it in JavaScript

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