Recycling Symbol For Type-1 Plastics

Shortcodes

Copy useful codes for recycling symbol for type-1 plastics ♳ to use in websites, apps, blogs, and docs.

Unicode
U+2673
HTML Code
♳
HEX Code
♳
CSS Code
\2673
JS/JSON
\u2673
Unix/C/PHP/JAVA
0x2673
URL-encode
%E2%99%B3

Customize Recycling Symbol For Type-1 Plastics

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

  

How to use Recycling Symbol For Type-1 Plastics in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>♳</span>
HTML Code:
<span>&#9843;</span>
HEX Code:
<span>&#x2673;</span>

Add with CSS

.recycling-symbol-for-type-1-plastics::before {
  content: '\\2673';
}

Set it in JavaScript

document.querySelector('.recycling-symbol-for-type-1-plastics').textContent = '♳';
copied