Skip to main content
added 83 characters in body
Source Link

T-SQL, 32 bytes

Based on the idea of Steve Matthews, but avoiding unprintable characters:

SELECT -~(ASCII('=')*ASCII('!')) 

Alternative (but rather obvious) solution, 23 bytes:

PRINT UNICODE(N'ߞ') 

T-SQL, 32 bytes

Based on the idea of Steve Matthews, but avoiding unprintable characters:

SELECT -~(ASCII('=')*ASCII('!')) 

T-SQL, 32 bytes

Based on the idea of Steve Matthews, but avoiding unprintable characters:

SELECT -~(ASCII('=')*ASCII('!')) 

Alternative (but rather obvious) solution, 23 bytes:

PRINT UNICODE(N'ߞ') 
Source Link

T-SQL, 32 bytes

Based on the idea of Steve Matthews, but avoiding unprintable characters:

SELECT -~(ASCII('=')*ASCII('!'))