Julia puts emphasis on the possible use of non-ASCII symbols in code. Most of supported operators are Unicode characters, some well known mathematical symbols (albeit practically unseen in programming), some are quite obscure. Many standard library functions use Unicode operators along with their ASCII versions.
Although x ÷ y does look nicer than div(x,y), my keyboard has no “÷” and I don’t want to look for it every integer division.
Do you use the fancy charac when writing Julia code?
Note that Unicode characters can be typed in the REPL and supported editors by tab completing their ASCII name, so you don’t have to “look for it” if you can remember its name.
Quite a few folks do - I keep (for my own purposes ) a collection of code snippets where people like to use Unicode creatively. But in general people don’t use them in registered packages, as there’s a convention to use mostly ASCII for public interfaces.
I think the Algorithms for Decision Making book shows some common ones (a lot of Greek and Math Script glyphs):