Braille Pattern Dots-12345

Shortcodes

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

Unicode
U+281F
HTML Code
⠟
HEX Code
⠟
CSS Code
\281F
JS/JSON
\u281F
Unix/C/PHP/JAVA
0x281F
URL-encode
%E2%A0%9F

Customize Braille Pattern Dots-12345

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

  

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

Insert in HTML

1. Direct symbol:
<span>⠟</span>
HTML Code:
<span>&#10271;</span>
HEX Code:
<span>&#x281F;</span>

Add with CSS

.braille-pattern-dots-12345::before {
  content: '\\281F';
}

Set it in JavaScript

document.querySelector('.braille-pattern-dots-12345').textContent = '⠟';
copied