Convert integer to character in base 10
Treat the decimal integer as a Unicode code unit (0–65535 for BMP) and map it to the character—use Decimal to Character.
Detailed answer
Enter the code point in decimal; the tool outputs the character (or a standard control label). Values outside the supported character range are rejected for character output, matching the hub behavior. This is not “base-10 digits of a string” but “one number → one glyph.”
Relationship context
Decimal code points appear in documentation and APIs; character output makes the symbol concrete for debugging and learning.
Quick conversion table
| Decimal (input) | Character (output) |
|---|---|
| 0 | NUL |
| 1 | SOH |
| 2 | STX |
| 3 | ETX |
| 4 | EOT |
| 5 | ENQ |
| 6 | ACK |
| 7 | BEL |
| 8 | BS |
| 9 | TAB |
| 10 | LF |
| 15 | SI |
| 16 | DLE |
| Decimal (input) | Character (output) |
|---|---|
| 11 | VT |
| 32 | |
| 64 | @ |
| 128 | PADDING CHARACTER |
| 256 | Ā |
| 512 | Ȁ |
| 1024 | Ѐ |
| 2048 | ࠀ |
| 4096 | က |
| 8192 | |
| 16384 | 䀀 |
| 32768 | 耀 |
| 65535 |
More Decimal converters
Dedicated pages from Decimal to every other format (binary, octal, decimal, hexadecimal, character), with the same parsing rules as the main Number System Converter.