|
SELECT N'T' + NCHAR(9) + N'A' + NCHAR(0x9) + N'B' AS [Single Decimal
or Hex Digit],
NCHAR(0xF02) AS [Code Point
(from hex)],
NCHAR(3842) AS [Code Point
(from decimal)],
-- We are passing in "values", _not_ "escape sequences"
NCHAR(0x0000000000000000000000F02) AS [BINARY / hex
"value"],
NCHAR(0003842.999999999) AS [INT / decimal
"value"];
Single Decimal
or Hex Digit |
Code Point
(from hex) |
Code Point
(from decimal) |
BINARY / hex
"value" |
INT / decimal
"value" |
T A B |
༂ |
༂ |
༂ |
༂ |
… |
|