Input Symbol For Numbers

๐Ÿ”ข

Shortcodes

Copy useful codes for input symbol for numbers ๐Ÿ”ข to use in websites, apps, blogs, and docs.

Unicode
U+1F522
HTML Code
🔢
HEX Code
🔢
CSS Code
\1F522
JS/JSON
\u1F522
Unix/C/PHP/JAVA
0x1F522
URL-encode
%F0%9F%94%A2

Customize Input Symbol For Numbers

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

๐Ÿ”ข
  

How to use Input Symbol For Numbers in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿ”ข</span>
HTML Code:
<span>&#128290;</span>
HEX Code:
<span>&#x1F522;</span>

Add with CSS

.input-symbol-for-numbers::before {
  content: '\\1F522';
}

Set it in JavaScript

document.querySelector('.input-symbol-for-numbers').textContent = '๐Ÿ”ข';
copied