Latin Small Letter O With Acute

ó

Shortcodes

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

Unicode
U+00F3
Alt Code
243
HTML Code
ó
HTML Entity
ó
HEX Code
ó
CSS Code
\00F3
JS/JSON
\u00F3
Unix/C/PHP/JAVA
0xF3
URL-encode
%C3%B3

Customize Latin Small Letter O With Acute

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

ó
  

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

Insert in HTML

1. Direct symbol:
<span>ó</span>
HTML Code:
<span>&#243;</span>
HTML Entity:
<span>&oacute;</span>
HEX Code:
<span>&#x00F3;</span>

Add with CSS

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

Set it in JavaScript

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