Up-pointing Small Red Triangle

🔼

Shortcodes

Copy useful codes for up-pointing small red triangle symbol 🔼 to use in websites, apps, blogs, and docs.

Unicode
U+1F53C
HTML Code
🔼
HEX Code
🔼
CSS Code
\1F53C
JS/JSON
\u1F53C
Unix/C/PHP/JAVA
0x1F53C
URL-encode
%F0%9F%94%BC

Customize Up-pointing Small Red Triangle

Customize 🔼, download it as SVG or PNG, or copy the generated HTML snippet.

🔼
  

How to use Up-pointing Small Red Triangle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>🔼</span>
HTML Code:
<span>&#128316;</span>
HEX Code:
<span>&#x1F53C;</span>

Add with CSS

.up-pointing-small-red-triangle::before {
  content: '\\1F53C';
}

Set it in JavaScript

document.querySelector('.up-pointing-small-red-triangle').textContent = '🔼';
copied