using System;
public class Program
{
public static void Main()
long test = 't';
char foo = (char)(test & 0xFF);
Console.WriteLine($"Output: {foo}");
}