Latin Capital Letter O With Diaeresis

Ö

Shortcodes

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

Unicode
U+00D6
Alt Code
214
HTML Code
Ö
HTML Entity
Ö
HEX Code
Ö
CSS Code
\00D6
JS/JSON
\u00D6
Unix/C/PHP/JAVA
0xD6
URL-encode
%C3%96

Customize Latin Capital Letter O With Diaeresis

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

Ö
  

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

Insert in HTML

1. Direct symbol:
<span>Ö</span>
HTML Code:
<span>&#214;</span>
HTML Entity:
<span>&Ouml;</span>
HEX Code:
<span>&#x00D6;</span>

Add with CSS

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

Set it in JavaScript

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