Insert emoji to node

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’, “”":grinning_face_with_smiling_eyes:

:grin:""")

dot.node(‘B’, ‘:grin:’)

dot.node(‘L’, ‘:joy:’)

dot.edges([‘AB’, ‘AL’])

dot.edge(‘B’, ‘L’, constraint=‘false’)

print(dot)

dot.render(‘test-output/emoji’, view=True, format=‘png’)emoji