Latin Small Letter O With Double Acute

ő

Shortcodes

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

Unicode
U+0151
HTML Code
ő
HEX Code
ő
CSS Code
\0151
JS/JSON
\u0151
Unix/C/PHP/JAVA
0x151
URL-encode
%C5%91

Customize Latin Small Letter O With Double Acute

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

ő
  

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

Insert in HTML

1. Direct symbol:
<span>ő</span>
HTML Code:
<span>&#337;</span>
HEX Code:
<span>&#x0151;</span>

Add with CSS

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

Set it in JavaScript

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