Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I think you are looking for <strong><a href="http://technet.microsoft.com/en-us/library/ms186939.aspx" rel="nofollow">NCHAR</a></strong> which is NATIONAL CHAR that is stored as UTF-16LE and is the only way to reliably store non-ASCII characters.</p> <blockquote> <p>Fixed-length Unicode string data. n defines the string length and must be a value from 1 through 4,000. The storage size is two times n bytes. When the collation code page uses double-byte characters, the storage size is still n bytes. Depending on the string, the storage size of n bytes can be less than the value specified for n. The ISO synonyms for nchar are national char and national character..</p> </blockquote> <p>Also note that <strong>SQL Server has no support for UTF-8.</strong></p> <p>Also check </p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/ms144260%28v=sql.105%29.aspx" rel="nofollow">Using SQL Server Collations</a></li> <li><a href="http://aalamrangi.wordpress.com/2012/05/13/storing-and-retrieving-non-english-unicode-characters-hindi-czech-arabic-etc-in-sql-server/" rel="nofollow">Storing and Retrieving Non-English Unicode Characters (Hindi, Czech, Arabic etc.) in SQL Server</a></li> </ul> <p><strong>EDIT:-</strong></p> <p>As commented, you can add N while you are inserting. Try like this:</p> <pre><code>insert into tbl_number (number_ownerName , number_num ) values (N'مديرية الزراعة/التقانة','235767') insert into tbl_number (number_ownerName , number_num) values (N'محمد راتب ابازيد','227927') insert into tbl_number (number_ownerName , number_num) values (N'فادي مصطفى ابازيد','221355') </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload