C# 7.0 gave us digit separators C# 7.0 but did not permit them to be used as the first digit in a literal.
C# 7.2 permits the _
character to also be used before the first numeric digit.
Code
C#
const utf16littleEndian = 0x_FE_FF;
const utf16bigEndian = 0x_FF_FE;
C#
const utf16littleEndian = 0xFE_FF;
const utf16bigEndian = 0xFF_FE;