Recycling Symbol For Generic Materials

Shortcodes

Copy useful codes for recycling symbol for generic materials ♺ to use in websites, apps, blogs, and docs.

Unicode
U+267A
HTML Code
♺
HEX Code
♺
CSS Code
\267A
JS/JSON
\u267A
Unix/C/PHP/JAVA
0x267A
URL-encode
%E2%99%BA

Customize Recycling Symbol For Generic Materials

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

  

How to use Recycling Symbol For Generic Materials in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>♺</span>
HTML Code:
<span>&#9850;</span>
HEX Code:
<span>&#x267A;</span>

Add with CSS

.recycling-symbol-for-generic-materials::before {
  content: '\\267A';
}

Set it in JavaScript

document.querySelector('.recycling-symbol-for-generic-materials').textContent = '♺';
copied