Braille Pattern Dots-12345678

Shortcodes

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

Unicode
U+28FF
HTML Code
⣿
HEX Code
⣿
CSS Code
\28FF
JS/JSON
\u28FF
Unix/C/PHP/JAVA
0x28FF
URL-encode
%E2%A3%BF

Customize Braille Pattern Dots-12345678

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

  

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

Insert in HTML

1. Direct symbol:
<span>⣿</span>
HTML Code:
<span>&#10495;</span>
HEX Code:
<span>&#x28FF;</span>

Add with CSS

.braille-pattern-dots-12345678::before {
  content: '\\28FF';
}

Set it in JavaScript

document.querySelector('.braille-pattern-dots-12345678').textContent = '⣿';
copied