Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

 (A Circumflex) character appears before every special character while doing table extracts

pksurya
Explorer
0 Kudos

Hello,

We have an custom extract program to provide table values to the auditors in a flat file format. We recently did a unicode conversion of our DB2 database and after the conversion we could  (A Circumflex) character appearing in front of every already existing special character. Is there a way to get rid of this character or do we know why this character appears in the extract? We don't see this character, either in documents or in underlying SAP tables.

Document:

Table:

Extract file after unicode conversion: (with  character)

Other examples with Â:


Thanks,

Surya

3 REPLIES 3

Sandra_Rossi
Active Contributor
0 Kudos

It looks like a conversion to UTF-8. Probably é in French text corresponds to é (Préhospitaliers, associé).

The problem with character encoding issues is that it's difficult to locate the origin. It can be the source data, or it can be any of the softwares which transfer the source data to the display.

The only way I know is to get the hexadecimal value of characters by debug, and compare them to the code pages. Well it's complex, people rarely know what character encoding is, what code pages are, what is UTF, etc.

You also have to understand how the database conversion was done (from which code page to which code page, etc.)

0 Kudos

Sandra,

If you have any links related to "what character encoding is, what code pages are, what is UTF, etc.",kindly share.

Thanks,

K.Kiran.

0 Kudos

wikipedia is always a good start.