Cheering Megaphone

๐Ÿ“ฃ

Shortcodes

Copy useful codes for cheering megaphone symbol ๐Ÿ“ฃ to use in websites, apps, blogs, and docs.

Unicode
U+1F4E3
HTML Code
📣
HEX Code
📣
CSS Code
\1F4E3
JS/JSON
\u1F4E3
Unix/C/PHP/JAVA
0x1F4E3
URL-encode
%F0%9F%93%A3

Customize Cheering Megaphone

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

๐Ÿ“ฃ
  

How to use Cheering Megaphone Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿ“ฃ</span>
HTML Code:
<span>&#128227;</span>
HEX Code:
<span>&#x1F4E3;</span>

Add with CSS

.cheering-megaphone::before {
  content: '\\1F4E3';
}

Set it in JavaScript

document.querySelector('.cheering-megaphone').textContent = '๐Ÿ“ฃ';
copied