Desktop Computer

๐Ÿ–ฅ

Shortcodes

Copy useful codes for desktop computer symbol ๐Ÿ–ฅ to use in websites, apps, blogs, and docs.

Unicode
U+1F5A5
HTML Code
🖥
HEX Code
🖥
CSS Code
\1F5A5
JS/JSON
\u1F5A5
Unix/C/PHP/JAVA
0x1F5A5
URL-encode
%F0%9F%96%A5

Customize Desktop Computer

Customize ๐Ÿ–ฅ, download it as SVG or PNG, or copy the generated HTML snippet.

๐Ÿ–ฅ
  

How to use Desktop Computer Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿ–ฅ</span>
HTML Code:
<span>&#128421;</span>
HEX Code:
<span>&#x1F5A5;</span>

Add with CSS

.desktop-computer::before {
  content: '\\1F5A5';
}

Set it in JavaScript

document.querySelector('.desktop-computer').textContent = '๐Ÿ–ฅ';
copied