I'll take a leap and say that this is a question about casting integers into chars so that you can use those symbols from the extended ASCI table. If that's the case then:
1 2 3 4
char c = 1;
std::cout << c << std::endl;
return 0;
Not using quotes around the value tells the compiler to use the character stored at that number and not the literal character typed.