Universal Recycling Symbol

Shortcodes

Copy useful codes for universal recycling symbol ♲ to use in websites, apps, blogs, and docs.

Unicode
U+2672
HTML Code
♲
HEX Code
♲
CSS Code
\2672
JS/JSON
\u2672
Unix/C/PHP/JAVA
0x2672
URL-encode
%E2%99%B2

Customize Universal Recycling Symbol

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

  

How to use Universal Recycling Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>♲</span>
HTML Code:
<span>&#9842;</span>
HEX Code:
<span>&#x2672;</span>

Add with CSS

.universal-recycling-symbol::before {
  content: '\\2672';
}

Set it in JavaScript

document.querySelector('.universal-recycling-symbol').textContent = '♲';
copied