Braille Pattern Dots-16

Shortcodes

Copy and paste codes for Braille Pattern Dots-16 symbol ⠡ to use in your websites, apps, blogs, and more.

Unicode
U+2821
HTML Code
⠡
HEX Code
⠡
CSS Code
\2821
JS/JSON
\u2821
Unix/C/PHP/JAVA
0x2821
URL-encode
%E2%A0%A1
copied

Customize Braille Pattern Dots-16 Symbol

Customize ⠡ symbol as you like and download Braille Pattern Dots-16 as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Braille Pattern Dots-16 symbol in HTML, CSS, and JS?

Insert ⠡ Braille Pattern Dots-16 using HTML

1. Copy-paste Braille Pattern Dots-16 directly:
<span>⠡</span>
2. HTML Decimal Code:
<span>&#10273;</span>
3. Hexadecimal Code:
<span>&#x2821;</span>
Preview:

Add Braille Pattern Dots-16 symbol with CSS

.braille-pattern-dots-16::before {
    content: '\\2821';
}
Preview: Braille Pattern Dots-16

Braille Pattern Dots-16 JavaScript Code

1. Direct Symbol:
document.querySelector('.braille-pattern-dots-16').textContent = '⠡';
2. Unicode Escape for ⠡:
document.querySelector('.braille-pattern-dots-16').textContent = '\u2821';
Preview: