Telephone Recorder

Shortcodes

Copy useful codes for telephone recorder symbol ⌕ to use in websites, apps, blogs, and docs.

Unicode
U+2315
HTML Code
⌕
HEX Code
⌕
CSS Code
\2315
JS/JSON
\u2315
Unix/C/PHP/JAVA
0x2315
URL-encode
%E2%8C%95

Customize Telephone Recorder

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

  

How to use Telephone Recorder Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⌕</span>
HTML Code:
<span>&#8981;</span>
HEX Code:
<span>&#x2315;</span>

Add with CSS

.telephone-recorder::before {
  content: '\\2315';
}

Set it in JavaScript

document.querySelector('.telephone-recorder').textContent = '⌕';
copied