Latin Small Letter q

q

Shortcodes

Copy useful codes for latin small letter q symbol q to use in websites, apps, blogs, and docs.

Unicode
U+0071
Alt Code
113
HTML Code
q
HEX Code
q
CSS Code
\0071
JS/JSON
\u0071
Unix/C/PHP/JAVA
0x71
URL-encode
q

Customize Latin Small Letter q

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

q
  

How to use Latin Small Letter q Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>q</span>
HTML Code:
<span>&#113;</span>
HEX Code:
<span>&#x0071;</span>

Add with CSS

.latin-small-letter-q::before {
  content: '\\0071';
}

Set it in JavaScript

document.querySelector('.latin-small-letter-q').textContent = 'q';
copied