Fullwidth Latin Small Letter Q

Shortcodes

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

Unicode
U+FF51
HTML Code
q
HEX Code
q
CSS Code
\FF51
JS/JSON
\uFF51
Unix/C/PHP/JAVA
0xFF51
URL-encode
%EF%BD%91

Customize Fullwidth Latin Small Letter Q

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

  

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

Insert in HTML

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

Add with CSS

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

Set it in JavaScript

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