Latin Capital Letter O With Double Acute

Ő

Shortcodes

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

Unicode
U+0150
HTML Code
Ő
HEX Code
Ő
CSS Code
\0150
JS/JSON
\u0150
Unix/C/PHP/JAVA
0x150
URL-encode
%C5%90

Customize Latin Capital Letter O With Double Acute

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

Ő
  

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

Insert in HTML

1. Direct symbol:
<span>Ő</span>
HTML Code:
<span>&#336;</span>
HEX Code:
<span>&#x0150;</span>

Add with CSS

.latin-capital-letter-o-with-double-acute::before {
  content: '\\0150';
}

Set it in JavaScript

document.querySelector('.latin-capital-letter-o-with-double-acute').textContent = 'Ő';
copied