For SQL Server 2012 +:
SELECT FORMAT(GETUTCDATE(),'ddd') AS ShortDayName
This is much cleaner than subscript. The FORMAT() function can also be passed to the culture for language compatible formatting.
Note that this works for other parts of the date, such as the month:
SELECT FORMAT(GETUTCDATE(),'MMM') AS ShortMonthName
FORMAT () Link
source share