Scroll

๐Ÿ“œ

Shortcodes

Copy and paste codes for Scroll symbol ๐Ÿ“œ to use in your websites, apps, blogs, and more.

Unicode
U+1F4DC
HTML Code
📜
HEX Code
📜
CSS Code
\1F4DC
JS/JSON
\u1F4DC
Unix/C/PHP/JAVA
0x1F4DC
URL-encode
%F0%9F%93%9C
copied

Customize Scroll Symbol

Customize ๐Ÿ“œ symbol as you like and download Scroll as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
๐Ÿ“œ
 

How to add Scroll symbol in HTML, CSS, and JS?

Insert ๐Ÿ“œ Scroll using HTML

1. Copy-paste Scroll directly:
<span>๐Ÿ“œ</span>
2. HTML Decimal Code:
<span>&#128220;</span>
3. Hexadecimal Code:
<span>&#x1F4DC;</span>
Preview: ๐Ÿ“œ

Add Scroll symbol with CSS

.scroll::before {
    content: '\\1F4DC';
}
Preview: Scroll

Scroll JavaScript Code

1. Direct Symbol:
document.querySelector('.scroll').textContent = '๐Ÿ“œ';
2. Unicode Escape for ๐Ÿ“œ:
document.querySelector('.scroll').textContent = '\u1F4DC';
Preview: ๐Ÿ“œ