Latin Capital Letter U With Acute

Ú

Shortcodes

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

Unicode
U+00DA
Alt Code
218
HTML Code
Ú
HTML Entity
Ú
HEX Code
Ú
CSS Code
\00DA
JS/JSON
\u00DA
Unix/C/PHP/JAVA
0xDA
URL-encode
%C3%9A

Customize Latin Capital Letter U With Acute

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

Ú
  

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

Insert in HTML

1. Direct symbol:
<span>Ú</span>
HTML Code:
<span>&#218;</span>
HTML Entity:
<span>&Uacute;</span>
HEX Code:
<span>&#x00DA;</span>

Add with CSS

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

Set it in JavaScript

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