Is it possible to change Unreal Engine Output Log window to Code Page 932 (Japanese)?

I am learning game programming with Unreal Engine on Windows 10 Professional (64-bit) English Version.

I want to write a log with Japanese characters as follows.

    FString x = TEXT("ありがとう");
    UE_LOG(LogTemp, Warning, TEXT("1: %s"), *x);

If I run the game, the Output Log shows a string of weird characters. For the sake of comparison, in Visual Studio Code I can change the code page of the integrated terminal by executing chcp 932 to Japanese.

I have not found any settings in UE editor to change this yet. The Output Log does not accept user input as well.

Question

Is it possible to change the code page of Output Log window of Unreal Engine 4.27.x?