Text to ASCII Art Generator
Convert any text to ASCII art instantly. Choose from multiple font styles and copy the output for terminals, READMEs, code comments, and social media.
Turn Text Into ASCII Art
Type any word or phrase and get it rendered as large ASCII art characters. Pick a font style, copy the output, and paste it anywhere that displays monospace text.
- Multiple fonts: Block, banner, slant, shadow, 3D, and more FIGlet-compatible styles
- Instant preview: Output updates as you type โ no submit button needed
- One-click copy: Copy the full ASCII art block to clipboard
- Any text: Letters, numbers, and basic punctuation supported
Where to Use ASCII Art Text
- README headers: Large ASCII art project names at the top of a GitHub README make repositories visually distinctive
- Terminal welcome messages: Add ASCII art to
.bashrc,.zshrc, or server login banners (/etc/motd) - Code comments: Section dividers and file headers in source code โ especially common in C and assembly codebases
- CLI tool branding: Display your tool's name in ASCII art when it starts โ a classic convention for command-line applications
- Discord and Slack: Paste inside a code block (
```) to preserve monospace formatting
Popular ASCII Art Fonts
- Big / Block โ Bold, chunky letters good for headers and banners
- Slant โ Italicized style, popular for project names and logos
- Shadow โ Block letters with a drop shadow for depth
- Banner โ Classic wide format, good for terminal-width displays
- 3D โ Three-dimensional block letter effect
Frequently Asked Questions
Why does my ASCII art look broken when I paste it?
ASCII art requires a monospace (fixed-width) font where every character occupies the same horizontal space. In proportional fonts (the default in most text editors, email clients, and web pages), characters have different widths and the art falls apart. Always paste ASCII art inside a code block or monospace text element: ``` in Markdown/Discord, <pre> tags in HTML, or a code-formatted message in Slack.
What is FIGlet?
FIGlet is the original ASCII art text program, written in 1991. It defines the .flf font file format that most ASCII art generators (including this one) use. "FIG" stood for "Frank, Ian, and Glen's Letters." Hundreds of FIGlet-compatible fonts exist, ranging from simple block letters to elaborate 3D and decorative styles.
What characters are supported?
Standard ASCII art fonts support all printable ASCII characters: AโZ (usually uppercase only, though some fonts support both cases), 0โ9, and common punctuation like !@#$%&*()+-=[]. Extended Unicode characters (emoji, accented letters, CJK characters) are not supported โ ASCII art is inherently limited to the 95 printable ASCII characters.