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)
0NUL
1SOH
2STX
3ETX
4EOT
5ENQ
6ACK
7BEL
8BS
9TAB
10LF
15SI
16DLE
Decimal (input)Character (output)
11VT
32
64@
128PADDING 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.