Latin Capital Letter A With Acute

Á

Shortcodes

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

Unicode
U+00C1
Alt Code
193
HTML Code
Á
HTML Entity
Á
HEX Code
Á
CSS Code
\00C1
JS/JSON
\u00C1
Unix/C/PHP/JAVA
0xC1
URL-encode
%C3%81

Customize Latin Capital Letter A With Acute

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

Á
  

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

Insert in HTML

1. Direct symbol:
<span>Á</span>
HTML Code:
<span>&#193;</span>
HTML Entity:
<span>&Aacute;</span>
HEX Code:
<span>&#x00C1;</span>

Add with CSS

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

Set it in JavaScript

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