online C Glyph visualizer


this tool built to visualize font glyph for embedded applications.
insert raw binary and hit generate button to view the glyph,
for a starter you can see "A" in glcd font: 0b01111000, 0b00100100, 0b00100100, 0b01111000, 0b00000001
or or in mono font 7x6 "A" in hex format 0x70, 0x88, 0x88, 0x88, 0xf8, 0x88, 0x88
the code will remove spaces, commas and parse the string into array of bytes and then render the glyph.












gfx_mono_font_basic_6x7 [6x7] github
this font is modified from originally microchip mono font, download from: [link]


0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* SPACE */
0x00, 0x00, 0x5f, 0x00, 0x00, 0x00, /* ! */
0x00, 0x07, 0x00, 0x07, 0x00, 0x00, /* " */
0x14, 0x7f, 0x14, 0x7f, 0x14, 0x00, /* # */

0x7e, 0x11, 0x11, 0x11, 0x7e, 0x00, /* A */
0x7f, 0x49, 0x49, 0x49, 0x36, 0x00, /* B */
0x3e, 0x41, 0x41, 0x41, 0x22, 0x00, /* C */
0x7f, 0x41, 0x41, 0x22, 0x1c, 0x00, /* D */
0x7f, 0x49, 0x49, 0x49, 0x41, 0x00, /* E */
0x7f, 0x09, 0x09, 0x01, 0x01, 0x00, /* F */
0x3e, 0x41, 0x41, 0x51, 0x32, 0x00, /* G */

0x00, 0x08, 0x36, 0x41, 0x00, 0x00, /* { */
0x00, 0x00, 0x7f, 0x00, 0x00, 0x00, /* | */
0x00, 0x41, 0x36, 0x08, 0x00, 0x00, /* } */
glcd font sample [5x7] github
0x00, 0x00, 0x00, 0x00, 0x00, //0 NULL
0x3E, 0x5B, 0x4F, 0x5B, 0x3E //1 SOH
0x3E, 0x6B, 0x4F, 0x6B, 0x3E, //2 STX
0x1C, 0x3E, 0x7C, 0x3E, 0x1C, //3 ETX
0x18, 0x3C, 0x7E, 0x3C, 0x18, //4 EOT
0x1C, 0x57, 0x7D, 0x57, 0x1C, //5 ENQ
0x1C, 0x5E, 0x7F, 0x5E, 0x1C, //6 ACK
0x00, 0x18, 0x3C, 0x18, 0x00, //7 BEL

0b00000000, 0b00000000, 0b00000000, 0b00000001, 0b00000001 //*SPACE*
0b01011100, 0b00000001, 0b00000001, 0b00000001, 0b00000001 //!

0b01111000, 0b00100100, 0b00100100, 0b01111000, 0b00000001 /* A */
0b01111100, 0b01010100, 0b01010100, 0b00101000, 0b00000001 /* B */
0b00111000, 0b01000100, 0b01000100, 0b00000001, 0b00000001 /* C */
0b01111100, 0b01000100, 0b01000100, 0b00111000, 0b00000001 /* D */
0b01111100, 0b01010100, 0b01010100, 0b01000100, 0b00000001 /* E */
0b01111100, 0b00010100, 0b00010100, 0b00000100, 0b00000001 /* F */
0b00111000, 0b01000100, 0b01010100, 0b01110100, 0b00000001 /* G */
electronlabs