DevKits

ASCII 25

End of Medium (EM)

Control character

Marks the physical end of usable media.

All encodings at a glance

Decimal25
Hexadecimal0x19
Octal0031
Binary00011001
HTML numeric entity
URL encoding%19
UTF-8 bytes0x19

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

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

Nearby codes