Input Symbol For Latin Small Letters

๐Ÿ”ก

Shortcodes

Copy useful codes for input symbol for latin small letters ๐Ÿ”ก to use in websites, apps, blogs, and docs.

Unicode
U+1F521
HTML Code
🔡
HEX Code
🔡
CSS Code
\1F521
JS/JSON
\u1F521
Unix/C/PHP/JAVA
0x1F521
URL-encode
%F0%9F%94%A1

Customize Input Symbol For Latin Small Letters

Customize ๐Ÿ”ก, download it as SVG or PNG, or copy the generated HTML snippet.

๐Ÿ”ก
  

How to use Input Symbol For Latin Small Letters in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿ”ก</span>
HTML Code:
<span>&#128289;</span>
HEX Code:
<span>&#x1F521;</span>

Add with CSS

.input-symbol-for-latin-small-letters::before {
  content: '\\1F521';
}

Set it in JavaScript

document.querySelector('.input-symbol-for-latin-small-letters').textContent = '๐Ÿ”ก';
copied