Up-pointing Red Triangle

๐Ÿ”บ

Shortcodes

Copy useful codes for up-pointing red triangle symbol ๐Ÿ”บ to use in websites, apps, blogs, and docs.

Unicode
U+1F53A
HTML Code
🔺
HEX Code
🔺
CSS Code
\1F53A
JS/JSON
\u1F53A
Unix/C/PHP/JAVA
0x1F53A
URL-encode
%F0%9F%94%BA

Customize Up-pointing Red Triangle

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

๐Ÿ”บ
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿ”บ</span>
HTML Code:
<span>&#128314;</span>
HEX Code:
<span>&#x1F53A;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.up-pointing-red-triangle').textContent = '๐Ÿ”บ';
copied