Where can I find "Beta: Use Unicode UTF-8 for worldwide language support" option in Windows server 2016 ?

Vivek Lande 6 Reputation points
2021-10-12T17:01:15.293+00:00

Where can I find the below option in windows server 2016

"Beta: Use Unicode UTF-8 for worldwide language support".

I can see this option in windows 10 but not in server 2016.

Windows Server 2016
Windows Server 2016
A Microsoft server operating system that supports enterprise-level management updated to data storage.
2,368 questions
Windows Server
Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
12,110 questions
0 comments No comments
{count} vote

2 answers

Sort by: Most helpful
  1. Limitless Technology 39,351 Reputation points
    2021-10-13T08:46:07.94+00:00

    Hello VivekLande,

    The GUI setting might not appear, but the core changes should be the same in Windows Server 2016:

    I leave here two ways to enable it, I think they will be helpful for many users:

    Win+R -> intl.cpl
    Administrative tab
    Click the Change system locale button.
    Enable Beta: Use Unicode UTF-8 for worldwide language support
    Reboot
    or alternatively via reg file:

    Windows Registry Editor Version 5.00

    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Nls\CodePage]
    "ACP"="65001"
    "OEMCP"="65001"
    "MACCP"="65001"


    --If the reply is helpful, please Upvote and Accept as answer--

    3 people found this answer helpful.

  2. 2022-05-24T16:22:43.003+00:00
    If((Test-Path -LiteralPath "HKLM:\SYSTEM\CurrentControlSet\Control\Nls\CodePage") -NE $True) {New-Item "HKLM:\SYSTEM\CurrentControlSet\Control\Nls\CodePage" -Force};
    New-ItemProperty -LiteralPath 'HKLM:\SYSTEM\CurrentControlSet\Control\Nls\CodePage' -Name 'ACP' -Value '65001' -PropertyType String -Force;
    New-ItemProperty -LiteralPath 'HKLM:\SYSTEM\CurrentControlSet\Control\Nls\CodePage' -Name 'OEMCP' -Value '65001' -PropertyType String -Force;
    New-ItemProperty -LiteralPath 'HKLM:\SYSTEM\CurrentControlSet\Control\Nls\CodePage' -Name 'MACCP' -Value '65001' -PropertyType String -Force;
    
    1 person found this answer helpful.
    0 comments No comments