Down-pointing Small Red Triangle

๐Ÿ”ฝ

Shortcodes

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

Unicode
U+1F53D
HTML Code
🔽
HEX Code
🔽
CSS Code
\1F53D
JS/JSON
\u1F53D
Unix/C/PHP/JAVA
0x1F53D
URL-encode
%F0%9F%94%BD

Customize Down-pointing Small Red Triangle

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

๐Ÿ”ฝ
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿ”ฝ</span>
HTML Code:
<span>&#128317;</span>
HEX Code:
<span>&#x1F53D;</span>

Add with CSS

.down-pointing-small-red-triangle::before {
  content: '\\1F53D';
}

Set it in JavaScript

document.querySelector('.down-pointing-small-red-triangle').textContent = '๐Ÿ”ฝ';
copied