Carrot

๐Ÿฅ•

Shortcodes

Copy useful codes for carrot symbol ๐Ÿฅ• to use in websites, apps, blogs, and docs.

Unicode
U+1F955
HTML Code
🥕
HEX Code
🥕
CSS Code
\1F955
JS/JSON
\u1F955
Unix/C/PHP/JAVA
0x1F955
URL-encode
%F0%9F%A5%95

Customize Carrot

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

๐Ÿฅ•
  

How to use Carrot Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿฅ•</span>
HTML Code:
<span>&#129365;</span>
HEX Code:
<span>&#x1F955;</span>

Add with CSS

.carrot::before {
  content: '\\1F955';
}

Set it in JavaScript

document.querySelector('.carrot').textContent = '๐Ÿฅ•';
copied