Latin Small Letter U With Acute

ú

Shortcodes

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

Unicode
U+00FA
Alt Code
250
HTML Code
ú
HTML Entity
ú
HEX Code
ú
CSS Code
\00FA
JS/JSON
\u00FA
Unix/C/PHP/JAVA
0xFA
URL-encode
%C3%BA

Customize Latin Small Letter U With Acute

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

ú
  

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

Insert in HTML

1. Direct symbol:
<span>ú</span>
HTML Code:
<span>&#250;</span>
HTML Entity:
<span>&uacute;</span>
HEX Code:
<span>&#x00FA;</span>

Add with CSS

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

Set it in JavaScript

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