Recycling Symbol For Type-3 Plastics

Shortcodes

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

Unicode
U+2675
HTML Code
♵
HEX Code
♵
CSS Code
\2675
JS/JSON
\u2675
Unix/C/PHP/JAVA
0x2675
URL-encode
%E2%99%B5

Customize Recycling Symbol For Type-3 Plastics

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

  

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

Insert in HTML

1. Direct symbol:
<span>♵</span>
HTML Code:
<span>&#9845;</span>
HEX Code:
<span>&#x2675;</span>

Add with CSS

.recycling-symbol-for-type-3-plastics::before {
  content: '\\2675';
}

Set it in JavaScript

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