#include <stdio.h> int main( void ) { printf( "0x%02hhX\n", 'A' ); printf( "0x%02hhX\n", 'b' ); printf( "0x%02hhX\n", 'c' ); return 0; }