We can also use hexidecimal literal in C#.The hexidecimal has 0X prefix.using System;class Program{ static void Main(string[] args) { int i = 0XFF; Console.WriteLine(i); }}The output:255