ASCII Studio — frequently asked questions
ASCII Studio turns a short credit line like “Crafted by GoodCraft” into a clean
ASCII art banner or a styled console.log badge — free, private, and
entirely in your browser.
What is ASCII Studio?
ASCII Studio is a free, in-browser generator that converts a short
credit line into a FIGlet-style ASCII art banner or a styled console.log
badge. It runs entirely client-side — nothing is saved, uploaded, or sent — and needs
no account.
What is an ASCII signature or byline?
An ASCII signature is a small block of monospace ASCII art — for example
Crafted by ___ — placed in a source file’s comment header, a README, or
printed to the browser console as a credit line for whoever built the project.
What is a console.log badge, and how does %c work?
A console.log badge is a styled message logged to the browser developer console using
the %c directive, which applies an inline CSS string to the text that
follows it. ASCII Studio outputs a copy-ready one-liner that renders a colored pill:
console.log(
"%c⚡ Crafted by GoodCraft%c v1.0",
"background:#1e3a08;color:#c6ff70;padding:2px 8px;border-radius:4px;font-weight:bold",
"color:#9aa0a6;margin-left:6px"
);
Which ASCII fonts does ASCII Studio support?
ASCII Studio bundles five curated FIGlet fonts: Standard, Slant, Small, ANSI Shadow, and Banner. Fonts are bundled locally, so nothing is fetched from a third-party CDN at runtime.
What formats can I copy?
For ASCII art: plain text, an HTML comment, a console.log
statement, or a CSS/JS block comment. For console badges: the styled
console.log one-liner or plain text. Every format is escaped so it’s safe
to paste straight into source files.
Is ASCII Studio free and private?
Yes. ASCII Studio is completely free with no account required, and it runs entirely in your browser. Your text is never uploaded, stored, or sent to a server.
Can I use an emoji or custom icon in a console badge?
Yes. The badge icon field accepts any emoji or single character. ASCII Studio suggests
a few glyphs, and you can paste any emoji from your OS picker —
⌃⌘Space on macOS, Win + . on Windows.
Who made ASCII Studio?
ASCII Studio is built and maintained by GoodCraft, a studio focused on practical, well-crafted developer tools and AI systems. Learn more at goodcraft.io.