Surrogate character to visualize a space like ̺ this, but without combining?

2

I'm looking for a character in Unicode like this (in black):

combining inverted bridge below

The problem with COM­BI­NING INVERTED BRID­GE BELOW (code point U+033A, \xCC\xBA in UTF-8) is that it must be combined with another character. I need the character stand-alone.

Combined with a space:   ̺  (easily lost if you try to delete the character to its left-hand side)

First letter of word, non-spacing bridge, rest:   ̺Not ̺what ̺I ̺want (N̺ot ...)

Is there such a character, a non-combining, spacing inverted bridge below?

CodeManX

Posted 2016-04-07T23:15:27.467

Reputation: 197

3

See How can I best display a blank space character?

– Scott – 2016-04-08T04:19:16.650

Greate! blank and underbracket are the relevant keywords here. Do you want to post an answer I can accept? – CodeManX – 2016-04-09T00:17:45.630

Answers

2

To quote an answer by Ben to How can I best display a blank space character?, these two underbracket characters are possibilities:

  • “Open Box” (code point U+2423, looks like ‘␣’). This can be entered in HTML as ␣, ␣ and ␣.
  • “Bottom Square Bracket” (code point U+23B5, looks like ‘⎵’). This can be entered in HTML as ⎵ and ⎵.

You can see these characters in PDF files on Unicode.org here and here.

Scott

Posted 2016-04-07T23:15:27.467

Reputation: 17 653