Numbers to Letters Converter
Convert numbers to alphabet letters (A=1, B=2…) or ASCII characters, and back.
A–Z Reference Table
Click any character to append its number to the input.
What Is a Numbers to Letters Converter?
A numbers to letters converter maps numerical positions to their corresponding alphabet letters — converting 1 to A, 2 to B, 26 to Z, 27 to AA, and so on. It is useful for generating column labels, codes, and identifiers.
This conversion appears in spreadsheet column naming (Excel A, B, ... Z, AA, AB), outline numbering, cipher puzzles, and data labelling systems where an alphabetic code is needed from a numeric index.
Common Use Cases
- check_circleConvert column numbers to Excel-style letter labels (1=A, 27=AA)
- check_circleGenerate alphabetic codes from numeric sequence IDs
- check_circleConvert cipher puzzle number sequences to letter equivalents
- check_circleMap numbered outline sections to letter labels
- check_circleGenerate spreadsheet column headers from index numbers
- check_circleConvert encoded number sequences back to text in a simple cipher
Spreadsheet Column Mode
Converts numbers to Excel-style column labels: 1=A, 26=Z, 27=AA, 52=AZ, 53=BA.
Simple Letter Mapping
Maps 1-26 to A-Z for simple alphabetic position conversion used in ciphers and labelling.
Bulk Conversion
Convert a list of numbers to their letter equivalents in one operation.
Frequently Asked Questions
How are numbers above 26 handled?
In spreadsheet column mode (Excel-style), 27=AA, 28=AB, and so on. In simple mode, numbers above 26 have no single-letter equivalent.
What is the Excel column naming convention?
Excel uses a base-26 positional system without a zero: A-Z for columns 1-26, then AA-AZ for 27-52, BA-BZ for 53-78, and so on.
Can I convert letters back to numbers?
Yes. Switch to letters-to-numbers mode to convert A back to 1, AA back to 27, and so on.
Is this the same as A1Z26 cipher?
Simple mode (1=A, 2=B ... 26=Z) is the A1Z26 cipher. Spreadsheet mode uses a different formula to handle numbers beyond 26.
Developer Insights
From the Blog
The Case for 100% Client-Side Data Processing
Why we built OpenFormatter to process all data locally, and what that means for your workflow security.
Why JSON Formatting Matters More Than You Think
How proper JSON structure prevents production bugs, improves debugging, and makes code reviews faster.
How Our SQL Prettifier Works Under the Hood
A technical walkthrough of our SQL formatter and the engineering decisions that handle edge cases gracefully.