ASCI art characters for creating diagrams
- ASCII code 191 = β ( Box drawing character single line upper right corner )
- ASCII code 192 = β ( Box drawing character single line lower left corner )
- ASCII code 193 = β΄ ( Box drawing character single line horizontal and up )
- ASCII code 194 = β¬ ( Box drawing character single line horizontal down )
- ASCII code 195 = β ( Box drawing character single line vertical and right )
- ASCII code 196 = β ( Box drawing character single horizontal line )
- ASCII code 197 = βΌ ( Box drawing character single line horizontal vertical )
- ASCII code 217 = β ( Box drawing character single line lower right corner )
- ASCII code 218 = β ( Box drawing character single line upper left corner )
- ASCII code 179 = β ( Box drawing character single vertical line )
- ASCII code 180 = β€ ( Box drawing character single vertical and left line )
- ASCII code 185 = β£ ( Box drawing character double line vertical and left )
- ASCII code 186 = β ( Box drawing character double vertical line )
- ASCII code 187 = β ( Box drawing character double line upper right corner )
- ASCII code 188 = β ( Box drawing character double line lower right corner )
- ASCII code 200 = β ( Box drawing character double line lower left corner )
- ASCII code 201 = β ( Box drawing character double line upper left corner )
- ASCII code 202 = β© ( Box drawing character double line horizontal and up )
- ASCII code 203 = β¦ ( Box drawing character double line horizontal down )
- ASCII code 204 = β ( Box drawing character double line vertical and right )
- ASCII code 205 = β ( Box drawing character double horizontal line )
- ASCII code 206 = β¬ ( Box drawing character double line horizontal vertical )
- ASCII code 176 = β ( Graphic character, low density dotted )
- ASCII code 177 = β ( Graphic character, medium density dotted )
- ASCII code 178 = β ( Graphic character, high density dotted )
- ASCII code 219 = β ( Block, graphic character )
- ASCII code 220 = β ( Bottom half block )
- ASCII code 223 = β ( Top half block )
- ASCII code 254 = β ( black square )
Found this while trying to avoid this problem in ASCII art drawing.
From my experience, the "?" hexagon appears when trying to use the extended part of ASCII. That is, trying to make use of the most significant bit of a
char
type.I have yet to test it, but I thought maybe
unsigned char
or wider char types (likechar16_t
) may work, if you wanna try it.