After a conversion process and migration, I ended up with some content being converted improperly where '
was converted into a â€
. For example: the word :World's
was converted into worldâ€s
.
This happened for a very few select posts. In the database the characters were saved as:
Strangely enough when I copy paste the value from the terminal it is worldâ€
but the output as I am looking at it is:
The table description is:
bundle varchar(128) NO MUL
deleted tinyint(4) NO PRI 0
entity_id int(10) unsigned NO PRI NULL
revision_id int(10) unsigned NO MUL NULL
langcode varchar(32) NO PRI
delta int(10) unsigned NO PRI NULL
field_art_content_value longtext NO NULL
field_art_content_format varchar(255) YES MUL NULL
I tried to do a select with field_art_content_value like
â€` but the terminal is not returning anything. How do I properly query for those characters?