How to convert Hexadecimal #FFFFFF to System.Drawing.Color [duplicate] December 27, 2022 by Tarik string hex = "#FFFFFF"; Color _color = System.Drawing.ColorTranslator.FromHtml(hex); Note: the hash is important!