Cleanup bad text encodings within database

In rare case while doing a site migration sometimes characters like are replaced with “. This will clean up the most common encoding issues.

wp search-replace "“" "“" --all-tables --report-changed-only
wp search-replace "â€" "”" --all-tables --report-changed-only
wp search-replace "’" "’" --all-tables --report-changed-only
wp search-replace "‘" "‘" --all-tables --report-changed-only
wp search-replace "—" "–" --all-tables --report-changed-only
wp search-replace "–" "—" --all-tables --report-changed-only
wp search-replace "•" "-" --all-tables --report-changed-only
wp search-replace "…" "…" --all-tables --report-changed-only