Last active
December 29, 2022 18:31
-
-
Save BoQsc/c28845931fa23f670d61ff37a522cf30 to your computer and use it in GitHub Desktop.
Windows Command Prompt Codepage tester
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
SETLOCAL EnableDelayedExpansion | |
FOR /L %%i IN (1,1,65001) DO ( | |
chcp %%i >nul 2>nul | |
TITLE %%i | |
IF "!ERRORLEVEL!"=="0" ( | |
echo %%i !ERRORLEVEL! | |
echo [๐๐ข๐ญ๐๐ฎ๐: https://github.com/vaido-world/download-ubuntu] | |
) | |
) | |
PAUSE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment