Fuel Pump

Shortcodes

Copy and paste codes for Fuel Pump symbol ⛽ to use in your websites, apps, blogs, and more.

Unicode
U+26FD
HTML Code
⛽
HEX Code
⛽
CSS Code
\26FD
JS/JSON
\u26FD
Unix/C/PHP/JAVA
0x26FD
URL-encode
%E2%9B%BD
copied

Customize Fuel Pump Symbol

Customize ⛽ symbol as you like and download Fuel Pump as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Fuel Pump symbol in HTML, CSS, and JS?

Insert ⛽ Fuel Pump using HTML

1. Copy-paste Fuel Pump directly:
<span>⛽</span>
2. HTML Decimal Code:
<span>&#9981;</span>
3. Hexadecimal Code:
<span>&#x26FD;</span>
Preview:

Add Fuel Pump symbol with CSS

.fuel-pump::before {
    content: '\\26FD';
}
Preview: Fuel Pump

Fuel Pump JavaScript Code

1. Direct Symbol:
document.querySelector('.fuel-pump').textContent = '⛽';
2. Unicode Escape for ⛽:
document.querySelector('.fuel-pump').textContent = '\u26FD';
Preview: