DevKits

ASCII 12

Form Feed (FF)

Control character

Historically ejected a page on line printers. Some editors interpret it as a page break marker.

All encodings at a glance

Decimal12
Hexadecimal0x0C
Octal0014
Binary00001100
HTML numeric entity
URL encoding%0C
UTF-8 bytes0x0C

Code snippets

JavaScript

String.fromCharCode(12); // "FF"
12.toString(16); // "0c"

Python

chr(12)           # control char FF
ord(chr(12))      # 12
hex(12)           # '0x0c'

HTML

&#12;   <!-- numeric entity (no named entity for this character) -->

Nearby codes