Braille Pattern Dots-1256

Shortcodes

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

Unicode
U+2833
HTML Code
⠳
HEX Code
⠳
CSS Code
\2833
JS/JSON
\u2833
Unix/C/PHP/JAVA
0x2833
URL-encode
%E2%A0%B3

Customize Braille Pattern Dots-1256

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

  

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

Insert in HTML

1. Direct symbol:
<span>⠳</span>
HTML Code:
<span>&#10291;</span>
HEX Code:
<span>&#x2833;</span>

Add with CSS

.braille-pattern-dots-1256::before {
  content: '\\2833';
}

Set it in JavaScript

document.querySelector('.braille-pattern-dots-1256').textContent = '⠳';
copied