Simple FIGlet interface

Input


Select font:
Text alignment:


Output style:


Terminal width (chars):

Output (bash command / terminal output / bash script / C printf)

Bash command:
figlet -f standard -w 80 -l -s -C utf8 "Hello World!"
Terminal output:
 _   _      _ _        __        __         _     _ _
| | | | ___| | | ___   \ \      / /__  _ __| | __| | |
| |_| |/ _ \ | |/ _ \   \ \ /\ / / _ \| '__| |/ _` | |
|  _  |  __/ | | (_) |   \ V  V / (_) | |  | | (_| |_|
|_| |_|\___|_|_|\___/     \_/\_/ \___/|_|  |_|\__,_(_)


Bash script:
echo -E " _   _      _ _        __        __         _     _ _"
echo -E "| | | | ___| | | ___   \ \      / /__  _ __| | __| | |"
echo -E "| |_| |/ _ \ | |/ _ \   \ \ /\ / / _ \| '__| |/ _\` | |"
echo -E "|  _  |  __/ | | (_) |   \ V  V / (_) | |  | | (_| |_|"
echo -E "|_| |_|\___|_|_|\___/     \_/\_/ \___/|_|  |_|\__,_(_)"
echo -E ""

C printf:
printf(" _   _      _ _        __        __         _     _ _\n");
printf("| | | | ___| | | ___   \\ \\      / /__  _ __| | __| | |\n");
printf("| |_| |/ _ \\ | |/ _ \\   \\ \\ /\\ / / _ \\| '__| |/ _` | |\n");
printf("|  _  |  __/ | | (_) |   \\ V  V / (_) | |  | | (_| |_|\n");
printf("|_| |_|\\___|_|_|\\___/     \\_/\\_/ \\___/|_|  |_|\\__,_(_)\n");
printf("\n");