Jupyter notebooks support markdown cells however it doesn't seem to support emoji codes. I suppose one way might be using html to import icons like fontawesome
Anyone have a workaround?
Edit: asked directly on the jupyter Github #2199
Jupyter notebooks support markdown cells however it doesn't seem to support emoji codes. I suppose one way might be using html to import icons like fontawesome
Anyone have a workaround?
Edit: asked directly on the jupyter Github #2199
Install emoji package:
pip install emoji --upgrade
then :
import emoji
print(emoji.emojize('Hi there! :revolving_hearts:'))
output:
Hi there! 💞
code
cells, not Markdown
–
Mcfarlane If you want to use colored emojis in Markdown
just copy the hexadecimal representation into the Markdown
cell.
For instance, for 😀 (grinning face) use 😀
© 2022 - 2024 — McMap. All rights reserved.
:warn:
etc. – Palstave