can you """code out""" characters like the blocky ones like in the old games where the char is all blocky

Can you code out those little characters like in old games you know like those blocky ones but small and control them or something... Yeah this is pretty...weird

Is it related to programming?
Additionally, please clarify your question.
Do you mean sth. like this?
1
2
3
4
  for (unsigned char ch = 176; ch <= 178; ch++)
  {
    cout << (int)ch << '\t' << ch << '\n';
  }

Output:
1
2
3
176     ░
177     ▒
178     ▓
Ohhhhhh..thx:)))
Topic archived. No new replies allowed.