In fact, I removed the latest version and installed version 2.46.0.
I do not accept this error but I still do not see the emoji and without the new line,
I will attach the code and output
from graphviz import Digraph
dot = Digraph(comment=‘emoji’)
dot.node(‘A’, “”"
""")
dot.node(‘B’, ‘’)
dot.node(‘L’, ‘’)
dot.edges([‘AB’, ‘AL’])
dot.edge(‘B’, ‘L’, constraint=‘false’)
print(dot)
dot.render(‘test-output/emoji’, view=True, format=‘png’)