Clion console DOES NOT HAVE UTF-8 support !!! 😓

How can this happen in the middle of 2024?

#include <iostream>

int main() {
    std::cout << "Versión" <<  std::endl;
    std::cout << "Español Hola"<<  std::endl;
    std::cout << "Portugués Olá"<<  std::endl;
    std::cout << "中文你好"<<  std::endl;
    std::cout << "русский привет"<<  std::endl;
    std::cout << "日本語こんにちは"<<  std::endl;
    //std::cout << "UTF-8 characters \uD83D\uDE05"<<  std::endl;
    //std::cout << "UTF-8 characters 😓"<<  std::endl;

    system("pause");
    return 0;
}

Build 😓

 

This is the console output

 

1

请先登录再写评论。