RadzenColorPicker Get HEX value versus rgb

Is it possible to get the HEX value from the control versus the RGB for saving to a database?

Yes, you can use Radzen.Blazor.Rendering.RGB to convert it to a hex value:

var hex = Radzen.Blazor.Rendering.RGB.Parse(value).ToHex();

That does the trick, Thank you