This example shows how to use the Rust character type 'char'. First, we declare a variable named letter of type char. Then we assign the single character 'A' to it using single quotes. Next, we print the character using println! macro. The execution table traces each step: declaration, assignment, printing, and program end. The variable tracker shows letter starts uninitialized, then holds 'A'. Key moments clarify that chars use single quotes and hold exactly one character. The visual quiz tests understanding of variable values, output timing, and char vs string differences. The snapshot summarizes char usage in Rust.