Decimal to Character Converter

developer · number system

Convert Decimal to Character with a fixed input and output format, step-by-step formulas under the result, and reference tables. Parsing matches the main hub (0b, 0x, leading 0 for octal; one optional . for fractional digits on numeric bases; single character for character mode).

Calculator

From: Decimal

To: Character

Formulas

Enter a value → place-value expansion + division chain.

About Decimal

Decimal (base 10) uses digits 0–9; no prefix is required. A single . may separate the fractional part (10⁻¹, 10⁻², …). Values are parsed to a number and re-encoded into the target format; very long fractions are limited by floating-point precision.

About Character

Character mode treats exactly one character as its Unicode (UTF-16 code unit) scalar value in the range 0–65535. There is no fractional part in this mode. Control and C1 characters are labeled by name in the output when relevant.

How to convert decimal to character

Three steps: symbols → the right math move for this pair → worked examples you can copy on paper. Numeric bases (binary, octal, decimal, hex) also support one radix point and digits after it; character mode stays a single code unit.

Step 1 — Identify the symbols

Input (Decimal): Ordinary digits 0–9; each position is a power of ten.

Output (Character): Exactly one symbol; its numeric code is the value you convert.

Dev note
  • This tool uses the UTF-16 code unit (0–65535 for BMP).

Step 2 — Decimal Code → Character

Take the decimal value. If it is in range, the tool maps it to the matching character (or a standard control label).

Step 3 — Worked examples

Two practice values in Decimal, converted to Character using the same rules as Step 2.

Example 1

"26" (Decimal) → Character.

From decimal

N₁₀ = 26

Decimal 26
→ character display: SUB

Verify: "26"SUB

Example 2

"100" (Decimal) → Character.

From decimal

N₁₀ = 100

Decimal 100
→ character display: d

Verify: "100"d

Summary

To convert Decimal to Character, the tool first parses your input strictly as decimal, producing a decimal value. For binary, octal, decimal, and hex, you may include one radix point and fractional digits; character input remains a single code unit with no dot. That value is formatted as character using the same rules as the main Number System Converter (prefixes 0b, 0, 0x where applicable; character output uses symbolic names for common controls and requires a whole-number code point). Long fractional expansions are truncated to a fixed digit cap; ordinary floating-point rounding may appear in extreme cases.

Relationship context

Numeric input is interpreted in decimal, converted to an integer, then displayed as the corresponding character (or a standard control-character name when applicable). Values outside 0–65535 are rejected for character output.

Conversion tables

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 number system pairs

Other fixed input/output converters use the same parsing rules as the hub. Open any pair for the same calculator layout and reference tables.