Airplane

Shortcodes

Copy and paste codes for Airplane symbol ✈ to use in your websites, apps, blogs, and more.

Unicode
U+2708
HTML Code
✈
HEX Code
✈
CSS Code
\2708
JS/JSON
\u2708
Unix/C/PHP/JAVA
0x2708
URL-encode
%E2%9C%88
copied

Customize Airplane Symbol

Customize ✈ symbol as you like and download Airplane 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 Airplane symbol in HTML, CSS, and JS?

Insert ✈ Airplane using HTML

1. Copy-paste Airplane directly:
<span>✈</span>
2. HTML Decimal Code:
<span>&#9992;</span>
3. Hexadecimal Code:
<span>&#x2708;</span>
Preview:

Add Airplane symbol with CSS

.airplane::before {
    content: '\\2708';
}
Preview: Airplane

Airplane JavaScript Code

1. Direct Symbol:
document.querySelector('.airplane').textContent = '✈';
2. Unicode Escape for ✈:
document.querySelector('.airplane').textContent = '\u2708';
Preview: