K
K
kibergile2020-05-29 02:22:35
Python
kibergile, 2020-05-29 02:22:35

How to display braille in windows console?

I need to print "⣾⣿⠿" to the console, I write print('⣾⣿⠿') and print the squares to the console.
how can I display braille in the windows console and is it even possible?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Volodymyr Palamar, 2020-05-29
@kibergile

import os
os.system("chcp 65001");
print(""+chr(41)+chr(61)+chr(55))

Here is the table https://ru.qwe.wiki/wiki/Braille_ASCII
Only there you need to translate HEX into DEC

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question