Unicode Finder

"⢖" U+2896(BRAILLE PATTERN DOTS-2358)

U+2896
Block Name
Braille Patterns
Name
BRAILLE PATTERN DOTS-2358

Programming

C
\u2896
JavaScript
\u2896
Java
\u2896
Json
\u2896
Python
\u2896
Perl
\x{2896}
PHP
\x{2896}
Ruby
\u{2896}
Rust
\u{2896}
Go
\u2896

Web

CSS
\002896
HtmlDecimal
⢖
HtmlHexadecimal
⢖
Url
%E2%A2%96

Code

MD5
f5c80bbb02f16e22a8dbe8bdbe07a08b
Sha1
a06fa444e678ec64d2269363046a65201be1d88a
Base64
4qKW

Usage Examples

Programming Languages

C:

char c = '\u2896';
printf("%c\n", c);  // Output: ⢖

JavaScript:

const char = '\u2896';
console.log(char);  // Output: ⢖

Java:

char c = '\u2896';
System.out.println(c);  // Output: ⢖

JSON:

{"text": "\u2896"}  // Value: ⢖

Python:

char = '\u2896'
print(char)  # Output: ⢖

Perl:

my $char = "\x{2896}";
print $char;  # Output: ⢖

PHP:

$char = "\x{2896}";
echo $char;  // Output: ⢖

Ruby:

char = "\u{2896}"
puts char  # Output: ⢖

Rust:

let c = '\u{2896}';
println!("{}", c);  // Output: ⢖

Go:

char := '\u2896'
fmt.Printf("%c\n", char)  // Output: ⢖

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002896";  /* Display: ⢖ */
}

HTML Decimal:

<p>HTML decimal: &#10390;</p>  <!-- Display: ⢖ -->

HTML Hexadecimal:

<p>HTML hex: &#x2896;</p>  <!-- Display: ⢖ -->

URL Encoding:

// ⢖ URL encoding
https://unicodefinder.com/search.php?query=%E2%A2%96

Encodings

MD5:

f5c80bbb02f16e22a8dbe8bdbe07a08b

SHA1:

a06fa444e678ec64d2269363046a65201be1d88a

Base64:

4qKW