Form Feed

Shortcodes

Copy and paste codes for Form Feed symbol to use in your websites, apps, blogs, and more.

Unicode
U+000C
HTML Code

HEX Code

CSS Code
\00C
JS/JSON
\u000C
Unix/C/PHP/JAVA
0x0C
URL-encode
%0C
copied

Customize Form Feed Symbol

Customize symbol as you like and download Form Feed 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 Form Feed symbol in HTML, CSS, and JS?

Insert Form Feed using HTML

1. Copy-paste Form Feed directly:
<span></span>
2. HTML Decimal Code:
<span>&#12;</span>
3. Hexadecimal Code:
<span>&#x000C;</span>
Preview:

Add Form Feed symbol with CSS

.form-feed::before {
    content: '\\00C';
}
Preview: Form Feed

Form Feed JavaScript Code

1. Direct Symbol:
document.querySelector('.form-feed').textContent = '';
2. Unicode Escape for :
document.querySelector('.form-feed').textContent = '\u000C';
Preview: