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
| Decimal | 12 |
| Hexadecimal | 0x0C |
| Octal | 0014 |
| Binary | 00001100 |
| HTML numeric entity |  |
| URL encoding | %0C |
| UTF-8 bytes | 0x0C |
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
 <!-- numeric entity (no named entity for this character) -->