0

I have question to update issue with unicode character -

character á has unicode U+00E0 But how to do it in the middle of String?

update `table` set 
`column` = "String with á sign in the middle"
where
`Column` = .......

How does the string with unicode á look like?

Thanks

DRastislav
  • 1,892
  • 3
  • 26
  • 40

1 Answers1

1

Send this query before your main query:(for setting the connection charset)

mysql_query("SET character_set_results = 'utf8', character_set_client = 'utf8', character_set_connection = 'utf8', character_set_database = 'utf8', character_set_server = 'utf8'") or die();


it's maybe helping you.

Mahmoud.Eskandari
  • 1,460
  • 3
  • 20
  • 32