Latin Letter Small Capital W

Shortcodes

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

Unicode
U+1D21
HTML Code
ᴡ
HEX Code
ᴡ
CSS Code
\1D21
JS/JSON
\u1D21
Unix/C/PHP/JAVA
0x1D21
URL-encode
%E1%B4%A1

Customize Latin Letter Small Capital W

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

  

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

Insert in HTML

1. Direct symbol:
<span>ᴡ</span>
HTML Code:
<span>&#7457;</span>
HEX Code:
<span>&#x1D21;</span>

Add with CSS

.latin-letter-small-capital-w::before {
  content: '\\1D21';
}

Set it in JavaScript

document.querySelector('.latin-letter-small-capital-w').textContent = 'ᴡ';
copied