Ear Of Maize

๐ŸŒฝ

Shortcodes

Copy useful codes for ear of maize symbol ๐ŸŒฝ to use in websites, apps, blogs, and docs.

Unicode
U+1F33D
HTML Code
🌽
HEX Code
🌽
CSS Code
\1F33D
JS/JSON
\u1F33D
Unix/C/PHP/JAVA
0x1F33D
URL-encode
%F0%9F%8C%BD

Customize Ear Of Maize

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

๐ŸŒฝ
  

How to use Ear Of Maize Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐ŸŒฝ</span>
HTML Code:
<span>&#127805;</span>
HEX Code:
<span>&#x1F33D;</span>

Add with CSS

.ear-of-maize::before {
  content: '\\1F33D';
}

Set it in JavaScript

document.querySelector('.ear-of-maize').textContent = '๐ŸŒฝ';
copied