Braille Pattern Dots-56

Shortcodes

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

Unicode
U+2830
HTML Code
⠰
HEX Code
⠰
CSS Code
\2830
JS/JSON
\u2830
Unix/C/PHP/JAVA
0x2830
URL-encode
%E2%A0%B0

Customize Braille Pattern Dots-56

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

  

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

Insert in HTML

1. Direct symbol:
<span>⠰</span>
HTML Code:
<span>&#10288;</span>
HEX Code:
<span>&#x2830;</span>

Add with CSS

.braille-pattern-dots-56::before {
  content: '\\2830';
}

Set it in JavaScript

document.querySelector('.braille-pattern-dots-56').textContent = '⠰';
copied