Manual Wheelchair

๐Ÿฆฝ

Shortcodes

Copy useful codes for manual wheelchair symbol ๐Ÿฆฝ to use in websites, apps, blogs, and docs.

Unicode
U+1F9BD
HTML Code
🦽
HEX Code
🦽
CSS Code
\1F9BD
JS/JSON
\u1F9BD
Unix/C/PHP/JAVA
0x1F9BD
URL-encode
%F0%9F%A6%BD

Customize Manual Wheelchair

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

๐Ÿฆฝ
  

How to use Manual Wheelchair Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿฆฝ</span>
HTML Code:
<span>&#129469;</span>
HEX Code:
<span>&#x1F9BD;</span>

Add with CSS

.manual-wheelchair::before {
  content: '\\1F9BD';
}

Set it in JavaScript

document.querySelector('.manual-wheelchair').textContent = '๐Ÿฆฝ';
copied