16
4

2 回答 2

25

You can use combining characters on any other character if you like, but with the caveat that the font has a large role to play in how it displays. While common diacritics like the acute accent should work for pretty much all Latin characters in most fonts the more obscure ones, like U+20DD Combining Enclosing Circle are a little wonkier. But ?⃝ would be the sequence you need, it just needs font support.

And with that being said, font support is abysmal. All fonts I have here that have a glyph for that character (Arial Unicode MS, Calibri, Consolas) don't honor it's combiningness and just render a large circle next to a question mark. The only one that does render it somewhat correctly is Cambria and Cambria Math, that at least overlap the glyph to the previous one:

enter image description here

It looks a little better when having the sequence space, question mark, circle:

enter image description here

but still not quite right.

Regarding regular rendering support in a browser:


Your browser:

?⃝</h1>

enter image description here


To accurately answer your question, though: You can just overlay two glyphs in your code by either just placing two labels directly on top of each other or by drawing it yourself. With font and rendering support as poor as in this case this is really something I'd solve through an image. So theoretically it is possible (and from Unicode's standpoint it definitely is because you can represent a circled question mark – but Unicode doesn't concern itself with fonts and rendering) but it's not very practical in most cases.

于 2013-05-07T08:32:16.753 回答
3

No, at least not in the sense of combining the way you write.

You will need to create a new font with the graphics of the circle and quotation mark, and you can assign that 'graphic' to one of the locations in a unicode table (substituting the default).

于 2013-05-07T08:02:58.020 回答