Kiwifruit

🥝

Shortcodes

Copy useful codes for kiwifruit symbol 🥝 to use in websites, apps, blogs, and docs.

Unicode
U+1F95D
HTML Code
🥝
HEX Code
🥝
CSS Code
\1F95D
JS/JSON
\u1F95D
Unix/C/PHP/JAVA
0x1F95D
URL-encode
%F0%9F%A5%9D

Customize Kiwifruit

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

🥝
  

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

Insert in HTML

1. Direct symbol:
<span>🥝</span>
HTML Code:
<span>&#129373;</span>
HEX Code:
<span>&#x1F95D;</span>

Add with CSS

.kiwifruit::before {
  content: '\\1F95D';
}

Set it in JavaScript

document.querySelector('.kiwifruit').textContent = '🥝';
copied