In WordCloud on Python I would like to merge two languages into one picture (English, Arabic) but I was unable to add the Arabic language as you see a squares instead of words and when I call the Arabic_reshaper library and make it read the csv file It shows me the Arabic language and make the English language as a squares
wordcloud = WordCloud(
collocations = False,
width=1600, height=800,
background_color='white',
stopwords=stopwords,
max_words=150,
random_state=42,
#font_path='/Users/mac/b.TTF'
).generate(' '.join(df['body_new']))
print(wordcloud)
plt.figure(figsize=(9,8))
fig = plt.figure(1)
plt.imshow(wordcloud)
plt.axis('off')
plt.show()
see her a put two languages ,but see a squares instead of words arabic