Unicode Finder

"⢈" U+2888(BRAILLE PATTERN DOTS-48)

U+2888
Block Name
Braille Patterns
Name
BRAILLE PATTERN DOTS-48

Programming

C
\u2888
JavaScript
\u2888
Java
\u2888
Json
\u2888
Python
\u2888
Perl
\x{2888}
PHP
\x{2888}
Ruby
\u{2888}
Rust
\u{2888}
Go
\u2888

Web

CSS
\002888
HtmlDecimal
⢈
HtmlHexadecimal
⢈
Url
%E2%A2%88

Code

MD5
9dd6d9aeff852725d9bdb953475448a9
Sha1
1c2ffb8a9983ffcb64e5fca454fb4fd2e485dd7f
Base64
4qKI

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2888';
console.log(char);  // Output: ⢈

Java:

char c = '\u2888';
System.out.println(c);  // Output: ⢈

JSON:

{"text": "\u2888"}  // Value: ⢈

Python:

char = '\u2888'
print(char)  # Output: ⢈

Perl:

my $char = "\x{2888}";
print $char;  # Output: ⢈

PHP:

$char = "\x{2888}";
echo $char;  // Output: ⢈

Ruby:

char = "\u{2888}"
puts char  # Output: ⢈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002888";  /* Display: ⢈ */
}

HTML Decimal:

<p>HTML decimal: &#10376;</p>  <!-- Display: ⢈ -->

HTML Hexadecimal:

<p>HTML hex: &#x2888;</p>  <!-- Display: ⢈ -->

URL Encoding:

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

Encodings

MD5:

9dd6d9aeff852725d9bdb953475448a9

SHA1:

1c2ffb8a9983ffcb64e5fca454fb4fd2e485dd7f

Base64:

4qKI