Latin Subscript Small Letter Schwa

Shortcodes

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

Unicode
U+2094
HTML Code
ₔ
HEX Code
ₔ
CSS Code
\2094
JS/JSON
\u2094
Unix/C/PHP/JAVA
0x2094
URL-encode
%E2%82%94

Customize Latin Subscript Small Letter Schwa

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

  

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

Insert in HTML

1. Direct symbol:
<span>ₔ</span>
HTML Code:
<span>&#8340;</span>
HEX Code:
<span>&#x2094;</span>

Add with CSS

.latin-subscript-small-letter-schwa::before {
  content: '\\2094';
}

Set it in JavaScript

document.querySelector('.latin-subscript-small-letter-schwa').textContent = 'ₔ';
copied