The char literals are between quotes. You can assign them to char, signedchar and unsignedchar. The default type for that would be char, whether that is signed or unsigned depends on the compiler ( which may have some option to change the default behaviour ).
If you want to be sure that a literal is interpreted as unsignedchar you'll have to explicitly cast it.