I couldn't find any related answer to my question and I want to have a string like "╔══╗" but wrong characters are represented instead of them. I found the issue and that was because of signed characters and that values of each character is different with ascii table value of element. How can I do that with char in c++?
int main() {
char a[] = "╔══╗";
std::cout << a << std::endl;
}