ASCII 25
End of Medium (EM)
Control character
Marks the physical end of usable media.
All encodings at a glance
| Decimal | 25 |
| Hexadecimal | 0x19 |
| Octal | 0031 |
| Binary | 00011001 |
| HTML numeric entity |  |
| URL encoding | %19 |
| UTF-8 bytes | 0x19 |
Code snippets
JavaScript
String.fromCharCode(25); // "EM"
25.toString(16); // "19"Python
chr(25) # control char EM
ord(chr(25)) # 25
hex(25) # '0x19'HTML
 <!-- numeric entity (no named entity for this character) -->