Skip to content

Commit 7bfc27f

Browse files
authored
Add missing nbsp; code
1 parent 1752173 commit 7bfc27f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ There are also surrogate code points, private and unassigned codepoints, and con
233233
| `''` | U+FEFF (Byte Order Mark - BOM) | has the important property of unambiguity on byte reorder. It is also zerowidth, and invisible. In non-complying software (like the PHP interpreter) this leads to all sorts of fun behaviour. |
234234
| `'￯'` | '\\uFFEF' Reversed Byte Order Mark (BOM) | does not equate to a legal character, other than the beginning of text. |
235235
| `'​'` | '\\u200B' zero-width non-break space | (a character with no appearance and no effect other than preventing the formation of ligatures). |
236-
| `' '` | U+00A0 NO-BREAK SPACE | force adjacent characters to stick together. Well known as   in HTML. |
236+
| `' '` | U+00A0 NO-BREAK SPACE | force adjacent characters to stick together. Well known as ` `  in HTML. |
237237
| `'­'` | U+00AD SOFT HYPHEN | (in HTML: ­) like ZERO WIDTH SPACE, but show a hyphen if (and only if) a break occurs. |
238238
| `'‍'` | U+200D ZERO WIDTH JOINER | force adjacent characters to be joined together (e.g., arabic characters or supported emoji). Can be used this to compose sequentially combined emoji. |
239239
| `'⁠'` | U+2060 WORD JOINER | the same as U+00A0, but completely invisible. Good for writing @font-face on Twitter. |

0 commit comments

Comments
 (0)