#include <iostream>

int main()
{
    char bytesArray[3] = {'\xE6', '\x88', '\x91'};
    std::cout.write(bytesArray, sizeof bytesArray);
}
