HexConverter
Map from an ASCII char to its hex value, e.g. arr['b'] == 11. 0xFF means it's not a hex digit.
public static void ToBytesBuffer(byte value, Span<byte> buffer, int startingIndex = 0, Casing casing = 0)
public static void ToCharsBuffer(byte value, Span<char> buffer, int startingIndex = 0, Casing casing = 0)
public static bool TryDecodeFromUtf16(ReadOnlySpan<char> chars, Span<byte> bytes, out int charsProcessed)