About 14,100,000 results
Open links in new tab
  1. SQL Server default character encoding - Stack Overflow

    Mar 3, 2011 · The default character encoding for a SQL Server database is iso_1, which is ISO 8859-1. Note that the character encoding depends on the data type of a column. You can get …

  2. How can I find Unicode/non-ASCII characters in an NTEXT field in a SQL

    For example, SQL Server considers the Unicode character "fullwidth comma" (http://www.fileformat.info/info/unicode/char/ff0c/index.htm) the same as a standard ASCII …

  3. Manage Unicode Characters in Data Using T-SQL - SQL Shack

    Nov 7, 2019 · In this article, I’ll provide some useful information to help you understand how to use Unicode in SQL Server and address various compilation problems that arise from the Unicode …

  4. SSMS Tip #3: Easily Access/Research ALL Unicode Characters (Yes ...

    Mar 25, 2019 · For most of the built-in string functions you can use the COLLATE clause to force a supplementary character-aware collation: DECLARE @Thingy NVARCHAR(10) = N'??'; …

  5. How do you get the Unicode code of a character in a SQL Server

    Aug 19, 2019 · I'm trying to get the Unicode code of the first character in the string using this SQL: select unicode(substring(asciicharacter, 1, 1)) from TableAscii; but no matter what the …

  6. UNICODE (Transact-SQL) - SQL Server | Microsoft Learn

    In versions of SQL Server earlier than SQL Server 2012 (11.x) and in Azure SQL Database, the UNICODE function returns a UCS-2 codepoint in the range 000000 through 00FFFF which is …

  7. To View List of ASCII Characters in SQL Server

    Jan 2, 2020 · To View ASCII Character’s List SQL Script SELECT NO,CHAR(NO) AS Characters FROM ( SELECT TOP 256 ROW_NUMBER() OVER (ORDER BY (SELECT NULL))-1 AS NO …

  8. SQL UNICODE Function Use and Examples - SQL Server Tips

    Apr 27, 2025 · Learn how to use the SQL Server UNICODE function to return the unicode value for a particular character.

  9. ASCII (Transact-SQL) - SQL Server | Microsoft Learn

    Returns the ASCII code value of the leftmost character of a character expression. Transact-SQL syntax conventions. An expression of type char or varchar. int. ASCII stands for A merican S …

  10. SQL Server UNICODE() Function: Understanding & Practical …

    Oct 27, 2024 · A comprehensive guide to the SQL Server UNICODE() function, explaining its purpose, syntax, and providing numerous practical examples for converting characters to their …

  11. Some results have been removed
Refresh