Latin Small Letter O With Circumflex And Acute

Shortcodes

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

Unicode
U+1ED1
HTML Code
ố
HEX Code
ố
CSS Code
\1ED1
JS/JSON
\u1ED1
Unix/C/PHP/JAVA
0x1ED1
URL-encode
%E1%BB%91

Customize Latin Small Letter O With Circumflex And Acute

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

  

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

Insert in HTML

1. Direct symbol:
<span>ố</span>
HTML Code:
<span>&#7889;</span>
HEX Code:
<span>&#x1ED1;</span>

Add with CSS

.latin-small-letter-o-with-circumflex-and-acute::before {
  content: '\\1ED1';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-o-with-circumflex-and-acute').textContent = 'ố';
copied