Symbol For Device Control Three

Shortcodes

Copy useful codes for symbol for device control three ␓ to use in websites, apps, blogs, and docs.

Unicode
U+2413
HTML Code
␓
HEX Code
␓
CSS Code
\2413
JS/JSON
\u2413
Unix/C/PHP/JAVA
0x2413
URL-encode
%E2%90%93

Customize Symbol For Device Control Three

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

  

How to use Symbol For Device Control Three in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>␓</span>
HTML Code:
<span>&#9235;</span>
HEX Code:
<span>&#x2413;</span>

Add with CSS

.symbol-for-device-control-three::before {
  content: '\\2413';
}

Set it in JavaScript

document.querySelector('.symbol-for-device-control-three').textContent = '␓';
copied