how to represent unsigned char with % c

#include <stdio.h>

int main() {
    unsigned char myChar = 'A';
    printf("Unsigned char represented with %%c: %c\n", myChar);

    return 0;
}