How can an exclamation mark be placed on top of an equal sign (accent)

I want to create the same symbol the Latex code \overset{!}{=} produces using pure typst.
I tried accent("=", "!") but it places the exclamation mark directly over the equal sign instead of on top of it.
latex: image
typst: image

Is there any pure typst function to achieve this?
(without embedding latex code into my typst document)

I think the default way is $=^!$
bild

And the function equivalent of sub/superscripts is attach.

1 Like