The two blocks might look the same but above is simple unicode symbol and below is emoji variant where u+fe0f is added before each symbol. Top works, bottom errors out expected exactly one character. How do I fix?
#let c = symbol(
("c", "♠"),
("d", "♥"),
("h", "♦"),
("s", "♣")
)
9#c.c 8#c.d 7#c.h 6#c.s
#let c = symbol(
("c", "♠️"),
("d", "♥️"),
("h", "♦️"),
("s", "♣️")
)
9#c.c 8#c.d 7#c.h 6#c.s