Advertisements

headerup to 320x100 / 728x90

Decimal to ASCII

Convert a list of decimal character codes to ASCII / Unicode text

Input
Loading editor...
Output

Output will appear here...

Advertisements

content bottomup to 300x250

What is Decimal to ASCII

Last reviewed:

Decimal (base 10) is the everyday number system humans use, handy as a reference format when converting between binary, octal, and hexadecimal values.

Decimal to ASCII turns a list of decimal character codes into the corresponding text. The tool accepts the full Unicode range (0–0x10FFFF) so it works for ASCII, Latin-1, CJK, and emoji alike.

It is effectively a dedicated alias of ASCII Code to Character — useful when readers or search engines look specifically for 'decimal to ASCII'.

Why use it

  • Reconstruct strings from spreadsheets of numeric codes.
  • Solve CTF puzzles that deliver decimal-only payloads.
  • Teach the decimal → character mapping in classrooms.
  • Inspect logs from instrumentation that only emits decimal codes.
  • Convert homework exercises or exam problems quickly.

Features

  • Accepts decimal codes 0–0x10FFFF
  • Supports emoji and CJK characters
  • Space, comma, or tab separators
  • Alias of ASCII Code to Character
  • Decimal to ASCII never leaves your machine

How to use Decimal to ASCII

  1. Paste decimal list. Drop a space- or comma-separated list of decimal codes.
  2. Run. Each decimal is converted to its Unicode character.
  3. Copy text. Grab the text for your puzzle answer or fixture.

Example (before/after)

Decimal codes

87 111 114 108 100

Text

World

Common errors

Code above 0x10FFFF

Unicode only defines up to 1114111.

Fix: Trim or correct the out-of-range value.

Unexpected hex input

This tool expects decimal.

Fix: Convert hex to decimal first or use Hex to Text.

FAQ

Does it accept hex?

No — it expects decimal. Use Hex to Text for hexadecimal input.

What about emoji?

Supported. The tool uses String.fromCodePoint.

Are commas allowed?

Yes — commas, spaces, and tabs all work as separators.

Is it case-sensitive?

Not applicable — the input is purely numeric.

Is my data stored?

No — conversion is client-side only.