Triangular Flag On Post

๐Ÿšฉ

Shortcodes

Copy useful codes for triangular flag on post symbol ๐Ÿšฉ to use in websites, apps, blogs, and docs.

Unicode
U+1F6A9
HTML Code
🚩
HEX Code
🚩
CSS Code
\1F6A9
JS/JSON
\u1F6A9
Unix/C/PHP/JAVA
0x1F6A9
URL-encode
%F0%9F%9A%A9

Customize Triangular Flag On Post

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

๐Ÿšฉ
  

How to use Triangular Flag On Post Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿšฉ</span>
HTML Code:
<span>&#128681;</span>
HEX Code:
<span>&#x1F6A9;</span>

Add with CSS

.triangular-flag-on-post::before {
  content: '\\1F6A9';
}

Set it in JavaScript

document.querySelector('.triangular-flag-on-post').textContent = '๐Ÿšฉ';
copied