In C#, the Unicode character literal where\uXXXX
the X
‘s are hex characters will let you specify Unicode characters. For example:
\u00A3
is the Pound sign, £.\u20AC
is the Euro sign, €.\u00A9
is the copyright symbol, ©.
You can use these Unicode character literals just like any other character in a string.
For example, "15 \u00A3 per item"
would be the string “15 £ per item”.