Click here to Skip to main content
15,888,816 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a table in which one of the columns has data mixed with a special character called replacement symbol (
). When the report is opened in report manager, this special character is not displayed and instead an extra empty space is displayed. However, i would still want this special character to be displayed as it is.

What I have tried:

Went through many blogs over the internet to find a possible solution but hard luck so far.
Posted
Updated 20-Mar-19 6:52am

1 solution

Usually these issues are due to character sets and encoding; the SQL solution is to make sure you are using the proper datatypes (NVarChar vs VarChar) and that the Collation property for the table/column is set correctly.

As for the report side of things, you may need to decode/re-encode that data into UTF8.

References:
MS Docs: View Collation Information - SQL Server | Microsoft Docs[^]
MSDN Forums: Encoding issue in ssrs report[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900