I need to add flame symbols on a scatter chart, as markers, but I can't find a way to do it. Using unicode I have managed to insert other icons, like the one I show in the example, but with the fire icon it is impossible (it adds another icon by default).
puntosx=[398795.18, 390822.99, 438724.46, 454956.84, 455071.76]
puntosy=[4482138.8, 4502143.71, 4496561.87, 4491586.33, 4452170.47]
fig, ax1 = plt.subplots(figsize=(21, 16))
# Control del tÃtulo y los ejes
ax1.set_title('Mapa Comunidad de Madrid',
pad = 20,
fontdict={'fontsize':20, 'color': '#4873ab'})
ax1.set_xlabel('Longitud')
ax1.set_ylabel('Latitud')
# Mostrar el mapa finalizado
plt.scatter(puntosx,puntosy,color='k',marker="$\U0001F601$" ,s=500,zorder=2)