FSymbols
fsymbols.com › text-art
Arte de texto ASCII
▅▀▅─█▘─▀█▀ My collection of text art pictures from symbols (also called ASCII art). Facebook and Instagram users like this stuff. Made, mostly, by unknown artists.
Videos
ASCII Art Generator
ascii-art-generator.org
Creador de arte ASCII online
Free online tool to create colored or monochrome Ascii Art. Also including a text to Ascii Banner option.
Textarts
textarts.shop
Tex ascii art X
La diferencia principal entre Ascii ... ascii y otros caracteres desconocidos o raros. Ambos son una forma de arte que hace posible que los usuarios puedan diseñar figuras con las letras y caracteres existentes....
Patorjk
patorjk.com › software › taag
Text to ASCII Art Generator (TAAG)
An online text conversion tool for changing text into ASCII art pictures. The output can be used to decorate emails, online profiles, IMs, and more!
Google Play
play.google.com › store › apps › details
ASCII Text Art – Apps no Google Play
ASCII art is a design technique that aims to create an image (or text banner) using only ascii-table characters (letters or keyboard symbols).
ASCII Art Archive
asciiart.eu
ASCII Art Archive - Home of ASCII Art
Discover thousands of classic and modern ASCII artworks, borders, patterns, animations, and text art. Find banners, dividers, icons, and more.
Canva
canva.com › home › features › ascii art generator
Pasa tu texto a ASCII gratuito y crea arte con Canva
Turn texts into designs for free until you get all the art you need, whether you’re creating eye-catching text for social posts, adding a retro touch to designs, or just having fun! Skip the complicated steps. Just type your text, hit a button, and watch the ASCII art generator app on Canva instantly transform it into ASCII art.
Wikipedia
en.wikipedia.org › wiki › ASCII_art
Arte ASCII - Wikipedia, la enciclopedia libre
March 7, 2026 - ASCII art is a graphic design technique that uses computers for presentation and consists of pictures pieced together from the 95 printable (from a total of 128) characters defined by the ASCII Standard from 1963 and ASCII compliant character sets with proprietary extended characters (beyond the 128 characters of standard 7-bit ASCII).
Reddit
reddit.com › r/rust › a small and simple text to ascii art project
Um pequeno e simples projeto de texto para arte ASCII
January 18, 2026 -
I may not be as good as some of the developers here but i hope to be like one of them some day. I for some reason really love rust and am trying to become better at each day this is one of the fun projects i built
Here is the github link-https://github.com/chief-netizen/Terminal-art
I would love any guidance that you guys have to offer
Top answer 1 of 2
3
A couple things: If you want to use a HashMap, you should use char as the key instead of String Alternatively, use an array where characters A to Z are represented as indexes 0 to 25 If you just want a newline, you can println!() without an empty string When you have an iterator, rather than .collect()ing it into a vector and indexing [1] into it, you can skip(1).next().expect("Please provide a word") Currently, you don't handle lowercase letters at all. I suggest converting the character to uppercase and then indexing into the hashmap with that The while loop and counter variable can be replaced by a simple for _ in 0..5 { ... }
2 of 2
1
Would be cool if it could work kinda like fonts and allow you to adapt how you render a char depending on what comes before