Latin Small Letter Y With Acute

ý

Shortcodes

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

Unicode
U+00FD
Alt Code
253
HTML Code
ý
HTML Entity
ý
HEX Code
ý
CSS Code
\00FD
JS/JSON
\u00FD
Unix/C/PHP/JAVA
0xFD
URL-encode
%C3%BD

Customize Latin Small Letter Y With Acute

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

ý
  

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

Insert in HTML

1. Direct symbol:
<span>ý</span>
HTML Code:
<span>&#253;</span>
HTML Entity:
<span>&yacute;</span>
HEX Code:
<span>&#x00FD;</span>

Add with CSS

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

Set it in JavaScript

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