Recycling Symbol For Type-2 Plastics

Shortcodes

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

Unicode
U+2674
HTML Code
♴
HEX Code
♴
CSS Code
\2674
JS/JSON
\u2674
Unix/C/PHP/JAVA
0x2674
URL-encode
%E2%99%B4

Customize Recycling Symbol For Type-2 Plastics

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

  

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

Insert in HTML

1. Direct symbol:
<span>♴</span>
HTML Code:
<span>&#9844;</span>
HEX Code:
<span>&#x2674;</span>

Add with CSS

.recycling-symbol-for-type-2-plastics::before {
  content: '\\2674';
}

Set it in JavaScript

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