Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
nisha_deepak
Helper III
Helper III

special characters is replace with other character

Capture.PNG

i have one column named name_insured which is text type data.In database value of that field is like Water- Edge Townhomes.

but when i load data from database to power bi that value is changed to Water’s Edge Townhomes. some special character is showing instead of hypen(-).i need hypen itself in my report ..how can i get that?plse help....

5 REPLIES 5
v-yingjl
Community Support
Community Support

Hi @nisha_deepak ,

Could not reproduce it in my environment. Which database you are using and what is the specific data type of this column in the database? Could you please consider sharing more details about this issue for further discussion?

 

Best Regards,
Community Support Team _ Yingjie Li

amitchandak
Super User
Super User

@nisha_deepak , refer to these two

https://xlncad.com/remove-or-extract-special-characters-from-a-data-set-using-power-query/

https://stackoverflow.com/questions/52860218/replacing-a-special-character-in-power-bi

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
themistoklis
Community Champion
Community Champion

@nisha_deepak 

 

It is encoding issue.

When you load the data make sure you use UTF-8

 

https://community.powerbi.com/t5/Desktop/Making-result-come-in-UTF-8/td-p/873316

 

yes...already i am using.

SET client_encoding TO 'UTF8';

 

 

 

 

@nisha_deepak 

Have you tried the following function in Power Query

 

TextEncoding.Utf8

 

let
    texto = "abcde",
    texto_binario = Text.ToBinary(
        texto,
        TextEncoding.Utf8
    )
in
    Binary.ToList(
        texto_binario
    )

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.