Skip to content

Instantly share code, notes, and snippets.

@BoQsc
Last active December 29, 2022 18:31
Show Gist options
  • Save BoQsc/c28845931fa23f670d61ff37a522cf30 to your computer and use it in GitHub Desktop.
Save BoQsc/c28845931fa23f670d61ff37a522cf30 to your computer and use it in GitHub Desktop.
Windows Command Prompt Codepage tester
@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