Braille Pattern Dots-136

Shortcodes

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

Unicode
U+2825
HTML Code
⠥
HEX Code
⠥
CSS Code
\2825
JS/JSON
\u2825
Unix/C/PHP/JAVA
0x2825
URL-encode
%E2%A0%A5

Customize Braille Pattern Dots-136

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

  

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

Insert in HTML

1. Direct symbol:
<span>⠥</span>
HTML Code:
<span>&#10277;</span>
HEX Code:
<span>&#x2825;</span>

Add with CSS

.braille-pattern-dots-136::before {
  content: '\\2825';
}

Set it in JavaScript

document.querySelector('.braille-pattern-dots-136').textContent = '⠥';
copied