Windows – Why is there no option to choose codepage 65001 (UTF-8) as a default codepage in console window

consolewindows 7

I can change codepage 950 (my computer's default) into codepage 65001 (UTF-8):

chcp 65001

Properties

But why is there no option to choose codepage 65001 as a default codepage in
console?

Default

Is it able to add codepage 65001 as an option?

Best Answer

Several ways, I think

  • Run cmd.exe with shortcut, "cmd.exe /k chcp 65001".
  • If using emulators like ConEmu or Console - specify the same as startup command.
  • Modify your registry

    [HKCU\Software\Microsoft\Command Processor]
    "AutoRun"="chcp 65001"
    
Related Question