Braille Pattern Blank Unicode Character

Braille Pattern Blank is a Unicode character that represents a braille cell with no raised dots. It means an empty cell in braille, similar to how a space means "no letter" in regular text. Since it appears blank, it is sometimes used for invisible text tricks like blank messages, although it is a valid character and not a whitespace.

Shortcodes

Copy useful codes for braille pattern blank unicode character ⠀ to use in websites, apps, blogs, and docs.

Unicode
U+2800
HTML Code
⠀
HEX Code
⠀
CSS Code
\2800
JS/JSON
\u2800
Unix/C/PHP/JAVA
0x2800
URL-encode
%E2%A0%80

Customize Braille Pattern Blank Unicode Character

Customize ⠀, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Braille Pattern Blank Unicode Character in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⠀</span>
HTML Code:
<span>&#10240;</span>
HEX Code:
<span>&#x2800;</span>

Add with CSS

.braille-pattern-blank::before {
  content: '\\2800';
}

Set it in JavaScript

document.querySelector('.braille-pattern-blank').textContent = '⠀';
copied