Braille Pattern Dots-1

Shortcodes

Copy useful codes for braille pattern dots-1 symbol ⠁ to use in websites, apps, blogs, and docs.

Unicode
U+2801
HTML Code
⠁
HEX Code
⠁
CSS Code
\2801
JS/JSON
\u2801
Unix/C/PHP/JAVA
0x2801
URL-encode
%E2%A0%81

Customize Braille Pattern Dots-1

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

  

How to use Braille Pattern Dots-1 Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⠁</span>
HTML Code:
<span>&#10241;</span>
HEX Code:
<span>&#x2801;</span>

Add with CSS

.braille-pattern-dots-1::before {
  content: '\\2801';
}

Set it in JavaScript

document.querySelector('.braille-pattern-dots-1').textContent = '⠁';
copied