Latin Small Letter O With Diaeresis

ö

Shortcodes

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

Unicode
U+00F6
Alt Code
246
HTML Code
ö
HTML Entity
ö
HEX Code
ö
CSS Code
\00F6
JS/JSON
\u00F6
Unix/C/PHP/JAVA
0xF6
URL-encode
%C3%B6

Customize Latin Small Letter O With Diaeresis

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

ö
  

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

Insert in HTML

1. Direct symbol:
<span>ö</span>
HTML Code:
<span>&#246;</span>
HTML Entity:
<span>&ouml;</span>
HEX Code:
<span>&#x00F6;</span>

Add with CSS

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

Set it in JavaScript

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