How to show congruent sign (≡) in cmd

I was trying to make a "design" with ascii in cmd but comes out this set of characters: "Ôëí", I know q is because of the delimitation of the characters that cmd can show and etc. but can you help me?

Author: leave-mealone, 2018-07-03

1 answers


1) based on the comment of @ Bacco

2) works not Windows 10 & Windows 8

3) does not work on Windows 7

For other characters see here !!, then it is add "0x" + code Hex character, as in echo(0xF0: 0x + HEX


@echo off & chcp 437 2>nul >nul 
for /f "delims= " %%c in ('forFiles /p "." /m "%~nx0" /c "cmd /c echo(0xF0"
') do set "_con=%%c" & cmd /v /r echo/ && echo/ Como mostrar sinal de congruente %_con%

insert the description of the image here

 0
Author: It Wasn't Me, 2020-01-19 21:01:16