Cucumber

🥒

Shortcodes

Copy useful codes for cucumber symbol 🥒 to use in websites, apps, blogs, and docs.

Unicode
U+1F952
HTML Code
🥒
HEX Code
🥒
CSS Code
\1F952
JS/JSON
\u1F952
Unix/C/PHP/JAVA
0x1F952
URL-encode
%F0%9F%A5%92

Customize Cucumber

Customize 🥒, download it as SVG or PNG, or copy the generated HTML snippet.

🥒
  

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

Insert in HTML

1. Direct symbol:
<span>🥒</span>
HTML Code:
<span>&#129362;</span>
HEX Code:
<span>&#x1F952;</span>

Add with CSS

.cucumber::before {
  content: '\\1F952';
}

Set it in JavaScript

document.querySelector('.cucumber').textContent = '🥒';
copied