Unicode miss conversion ?
Created by: SirMishaa

What's happen?
let html_document = Document::from(data.as_str());
let price = match html_document
.select(product_data.price_selector.as_str())
.iter()
.next()
{
None => {
println!("Unable to retrieve price element");
"".to_string()
}
Some(price) => price.text().to_string(),