I cant seem to find a general explanation for how to use extended ascii characters. I am specifically trying to use the different pipe variations for a minimap in my roguelike game.
static Encoding e = Encoding.GetEncoding("iso-8859-1");
string shown = e.GetString(new byte[] { 185 });
This code displays "1" even though all of the extended ascii tables show the pipe going in the top, left, bottom directions. Please help!