So I want to make a fancy ascii art title for a ‘toolkit’ program that I’m making which has a bunch of features like telling you your IP address or Username if you ever forget, but it’s not working. The ‘|’ character on my keyboard won’t work as it just makes the program close instantly, the alt code character ‘│’ won’t work as it gives me whatever ‘Γöé’ is in place of it, so I’ve tried a lot of trouble-shooting to no avail, and this is my last resort. Code so far is this (Color format is without special characters, and format for ascii art is better in file):
@echo off
title Toolkit
echo ESC[35m _________ ________ ________ ___ ___ __ ___ _________ ESC[0m
echo ESC[35m|___ __ | __ | | | | |_ ESC[0m
echo ESC[35m| _ | | / /| |__ _| ESC[0m
echo ESC[35m \ \ ___ ESC[0m
echo ESC[35m \ \ _ ESC[0m
echo ESC[35m _ _ _ _ _ _ _ _ESC[0m
echo ESC[35m || |||||_______||| |||| ||ESC[0m
pause
exit
Also keep in mind I’m kind of new to batch programing, but everything I’ve coded in the other batch files I made so far has worked.
JustForReference09 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.